mirror of
https://github.com/DrBeef/Raze.git
synced 2024-11-14 08:30:35 +00:00
- Blood: Fix max weapons slot test preventing slot 12
from being called.
* Fixes #891.
This commit is contained in:
parent
a90665732c
commit
016016b7ab
1 changed files with 1 additions and 1 deletions
|
@ -421,7 +421,7 @@ void GameInterface::Ticker()
|
|||
inp.actions |= oldactions & ~(SB_BUTTON_MASK | SB_RUN | SB_WEAPONMASK_BITS); // should be everything non-button and non-weapon
|
||||
|
||||
int newweap = inp.getNewWeapon();
|
||||
if (newweap > 0 && newweap < WeaponSel_MaxBlood) gPlayer[i].newWeapon = newweap;
|
||||
if (newweap > 0 && newweap <= WeaponSel_MaxBlood) gPlayer[i].newWeapon = newweap;
|
||||
}
|
||||
|
||||
BloodSpriteIterator it;
|
||||
|
|
Loading…
Reference in a new issue