Divergent/mods/Mask's Reanimated Anomaly A.../gamedata/scripts/shotgun_reload_fix.script

11 lines
255 B
Plaintext
Raw Normal View History

function actor_on_hud_animation_play(anm_table)
if (anm_table.anm_name == "anm_add_cartridge") then
anm_table.anm_mixin = false
end
end
function on_game_start()
RegisterScriptCallback("actor_on_hud_animation_play", actor_on_hud_animation_play)
end