Fixes fire_stacks update logic

This commit is contained in:
HarpyEagle
2015-10-05 19:23:51 -04:00
parent 227298e3dd
commit 74950268d7
+1 -1
View File
@@ -219,7 +219,7 @@
/mob/living/proc/handle_fire()
if(fire_stacks < 0)
fire_stacks = max(0, fire_stacks++) //If we've doused ourselves in water to avoid fire, dry off slowly
fire_stacks = min(0, ++fire_stacks) //If we've doused ourselves in water to avoid fire, dry off slowly
if(!on_fire)
return 1