Flying over lava no longer erroneously ignites you ablaze (#63474)

blah blah the refactor added an incorrect if statement
Fixes #61212
This commit is contained in:
Seth Scherer
2021-12-22 21:28:30 +00:00
committed by GitHub
parent 65bed7d227
commit f806725fbb
+1 -1
View File
@@ -151,7 +151,7 @@
/turf/open/lava/proc/can_burn_stuff(atom/movable/burn_target)
if(burn_target.movement_type & (FLYING|FLOATING)) //you're flying over it.
return isliving(burn_target) ? LAVA_BE_PROCESSING : LAVA_BE_IGNORING
return LAVA_BE_IGNORING
if(isobj(burn_target))
if(burn_target.throwing) // to avoid gulag prisoners easily escaping, throwing only works for objects.