From 99413ebcd92cb2aeb6fe8b7d8d6eb9d25ce51a79 Mon Sep 17 00:00:00 2001 From: John Willard <53777086+JohnFulpWillard@users.noreply.github.com> Date: Thu, 17 Mar 2022 06:17:12 -0400 Subject: [PATCH] makes decomposing take all asteroid floor into account (#65439) Prevents it from decomposing on asteroid floors (space) & icemoon floors, which is a subtype of asteroid floors. --- code/datums/components/food/decomposition.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/datums/components/food/decomposition.dm b/code/datums/components/food/decomposition.dm index 57a8b36bbfe..15a187396e8 100644 --- a/code/datums/components/food/decomposition.dm +++ b/code/datums/components/food/decomposition.dm @@ -73,7 +73,7 @@ var/turf/open/open_turf = food.loc - if(!istype(open_turf) || istype(open_turf, /turf/open/lava) || istype(open_turf, /turf/open/misc/asteroid/basalt)) //Are we actually in a valid open turf? + if(!istype(open_turf) || istype(open_turf, /turf/open/lava) || istype(open_turf, /turf/open/misc/asteroid)) //Are we actually in a valid open turf? remove_timer() return