diff --git a/wadsrc/static/zscript/inventory/weapons.txt b/wadsrc/static/zscript/inventory/weapons.txt index 03b34b947..f837bf4e5 100644 --- a/wadsrc/static/zscript/inventory/weapons.txt +++ b/wadsrc/static/zscript/inventory/weapons.txt @@ -130,18 +130,26 @@ class Weapon : StateProvider native { player.mo.PlayAttacking2 (); } + + Weapon weapon = player.ReadyWeapon; + state flashstate = null; + if (flashlabel == null) { - if (player.ReadyWeapon.bAltFire) + if (weapon.bAltFire) { - flashlabel = 'AltFlash'; + flashstate = weapon.FindState('AltFlash'); } - if (flashlabel == null) + if (flashstate == null) { - flashlabel = 'Flash'; + flashstate = weapon.FindState('Flash'); } } - player.SetPsprite(PSP_FLASH, player.ReadyWeapon.FindState(flashlabel)); + else + { + flashstate = weapon.FindState(flashlabel); + } + player.SetPsprite(PSP_FLASH, flashstate); } //--------------------------------------------------------------------------- @@ -738,4 +746,4 @@ class WeaponGiver : Weapon struct WeaponSlots native { native bool, int, int LocateWeapon(class weap); -} \ No newline at end of file +}