From f806725fbb36e73992c26196e4a4c176d2dca776 Mon Sep 17 00:00:00 2001 From: Seth Scherer Date: Wed, 22 Dec 2021 16:28:30 -0500 Subject: [PATCH] Flying over lava no longer erroneously ignites you ablaze (#63474) blah blah the refactor added an incorrect if statement Fixes #61212 --- code/game/turfs/open/lava.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/turfs/open/lava.dm b/code/game/turfs/open/lava.dm index b5c8e04a5d4..c7caef5b497 100644 --- a/code/game/turfs/open/lava.dm +++ b/code/game/turfs/open/lava.dm @@ -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.