diff --git a/Voices.py b/Voices.py index a50679b4d..5cde0784e 100644 --- a/Voices.py +++ b/Voices.py @@ -408,13 +408,13 @@ class VOICE_PACK_AGE(Enum): def process_pak_sfx_by_id(pak_sfx_id: int, sfx_id_map, pak_sounds, age): to_add = [] # Try adult and child SFX ID - age_shift = -0x20 if age == VOICE_PACK_AGE.ADULT else 0x20 # For a pak we're using as adult, also try using child SFX IDs and vice-versa +# age_shift = -0x20 if age == VOICE_PACK_AGE.ADULT else 0x20 # For a pak we're using as adult, also try using child SFX IDs and vice-versa # Check if the sfx_id is in the mapping for this age. If not try to shift it to the other age # This should allow a pack designed for a single age to work for another age # And if a pack has both ages in it, will only patch the current age on this pass - sfx_id = pak_sfx_id if pak_sfx_id in sfx_id_map.keys() else pak_sfx_id + age_shift - +# sfx_id = pak_sfx_id if pak_sfx_id in sfx_id_map.keys() else pak_sfx_id + age_shift + sfx_id = pak_sfx_id if sfx_id in sfx_id_map.keys(): pak_opts = pak_sounds[pak_sfx_id] # Options provided in the pack if not pak_opts: