mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-10 23:02:08 +00:00
- Fixed CF_DOUBLEFIRINGSPEED is in player->cheats, not player->WeaponState.
SVN r4061 (trunk)
This commit is contained in:
parent
f68d5a4845
commit
f0bc2fdc53
1 changed files with 1 additions and 1 deletions
|
@ -1037,7 +1037,7 @@ void P_MovePsprites (player_t *player)
|
|||
psp->tics--;
|
||||
|
||||
// [BC] Apply double firing speed.
|
||||
if ( psp->tics && (player->WeaponState & CF_DOUBLEFIRINGSPEED))
|
||||
if ( psp->tics && (player->cheats & CF_DOUBLEFIRINGSPEED))
|
||||
psp->tics--;
|
||||
|
||||
if(!psp->tics)
|
||||
|
|
Loading…
Reference in a new issue