mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-24 05:23:22 +01:00
Fixes lighters lighting you on fire. (#21340)
a rogue >= meant that you could be lit on fire even if you had zero firestacks Co-authored-by: Matt Atlas <liermattia@gmail.com>
This commit is contained in:
@@ -372,7 +372,7 @@
|
||||
if(fire_stacks_to_add)
|
||||
adjust_fire_stacks(fire_stacks_to_add)
|
||||
|
||||
if(fire_stacks >= 0 && !on_fire)
|
||||
if(fire_stacks > 0 && !on_fire)
|
||||
// Sanity check
|
||||
fire_stacks_temperature = 0
|
||||
set_on_fire()
|
||||
|
||||
Reference in New Issue
Block a user