mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-10 23:02:03 +00:00
Fix issue with PIPEBOMB_CONTROL mode 2, reported at http://forums.duke4.net/topic/6721-grenade-lifetime
git-svn-id: https://svn.eduke32.com/eduke32@4019 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
7ed85ce888
commit
ba4cfe704c
1 changed files with 2 additions and 2 deletions
|
@ -4659,10 +4659,10 @@ DETONATEB:
|
|||
s->lotag=911;
|
||||
*/
|
||||
|
||||
if (t[7] > 0)
|
||||
if (t[7] >= 1)
|
||||
t[7]--;
|
||||
|
||||
if (t[7] == 0)
|
||||
if (t[7] <= 0)
|
||||
t[6] = 3;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue