diff --git a/korman/properties/modifiers/sound.py b/korman/properties/modifiers/sound.py index ccbaa42..8234938 100644 --- a/korman/properties/modifiers/sound.py +++ b/korman/properties/modifiers/sound.py @@ -287,6 +287,7 @@ class PlasmaSound(idprops.IDPropMixin, bpy.types.PropertyGroup): header = plWAVHeader() if magic == b"RIFF": size = korlib.inspect_wavefile(stream, header) + return (header, size) elif magic == b"OggS": size = korlib.inspect_vorbisfile(stream, header) return (header, size)