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:
terminx 2013-08-17 22:48:31 +00:00
parent 7ed85ce888
commit ba4cfe704c

View file

@ -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;
}