diff --git a/wadsrc/static/zscript/shared/player.txt b/wadsrc/static/zscript/shared/player.txt index 2248ddc42..bcbaa4a57 100644 --- a/wadsrc/static/zscript/shared/player.txt +++ b/wadsrc/static/zscript/shared/player.txt @@ -2175,7 +2175,8 @@ class PlayerPawn : Actor // look for its non-powered up version. if (ReadyWeapon.bPOWERED_UP && ReadyWeapon.SisterWeaponType != null) { - return player.weapons.LocateWeapon(ReadyWeapon.SisterWeaponType); + [found, slot, index] = player.weapons.LocateWeapon(ReadyWeapon.SisterWeaponType); + return found, slot, index; } return false, 0, 0; }