mirror of
https://github.com/DrBeef/Raze.git
synced 2024-11-25 05:21:28 +00:00
- Blood: Fix bad cherry pick in bcd2d82bc7
.
This commit is contained in:
parent
483cec5bdd
commit
30cacb1a70
1 changed files with 2 additions and 2 deletions
|
@ -2166,7 +2166,7 @@ static int WeaponFindLoaded(PLAYER* pPlayer, int* a2)
|
|||
|
||||
int processSprayCan(PLAYER* pPlayer)
|
||||
{
|
||||
const char bUseShootAsThrow = !VanillaMode() && pPlayer->input.buttonFlags.shoot;
|
||||
const char bUseShootAsThrow = !VanillaMode() && (pPlayer->input.actions & SB_FIRE);
|
||||
switch (pPlayer->weaponState)
|
||||
{
|
||||
case 5:
|
||||
|
@ -2211,7 +2211,7 @@ int processSprayCan(PLAYER* pPlayer)
|
|||
|
||||
static bool processTNT(PLAYER* pPlayer)
|
||||
{
|
||||
const char bUseShootAsThrow = !VanillaMode() && pPlayer->input.buttonFlags.shoot;
|
||||
const char bUseShootAsThrow = !VanillaMode() && (pPlayer->input.actions & SB_FIRE);
|
||||
switch (pPlayer->weaponState)
|
||||
{
|
||||
case 4:
|
||||
|
|
Loading…
Reference in a new issue