- Blood: Fix TNT pickup accidentally equipping player with voodoo doll.

* Fixes #544.
* Thanks to @carnivoroussociety for pointing me in the right direction.
This commit is contained in:
Mitch Richters 2021-10-20 19:58:07 +11:00
parent 1214f8ba00
commit fc73c67bb1

View file

@ -2283,7 +2283,7 @@ void WeaponProcess(PLAYER *pPlayer) {
if (checkAmmo2(pPlayer, 5, 1) && pPlayer->isUnderwater == 0)
pPlayer->newWeapon = kWeapDynamite;
else if (checkAmmo2(pPlayer, 10, 1))
pPlayer->newWeapon = kWeapVoodooDoll;
pPlayer->newWeapon = kWeapProximity;
else if (checkAmmo2(pPlayer, 11, 1))
pPlayer->newWeapon = kWeapRemote;
}