From 1d3f9bd4ec4fe48a676006dd0f849a74641fc279 Mon Sep 17 00:00:00 2001 From: AnturK Date: Mon, 23 Apr 2018 09:07:07 +0200 Subject: [PATCH 1/2] Fixes thermite immunities (#37359) --- code/datums/components/thermite.dm | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/code/datums/components/thermite.dm b/code/datums/components/thermite.dm index 13ec5ed8f9..0cc95e57b3 100644 --- a/code/datums/components/thermite.dm +++ b/code/datums/components/thermite.dm @@ -3,21 +3,21 @@ var/amount var/overlay - var/static/list/blacklist = typecacheof( + var/static/list/blacklist = typecacheof(list( /turf/open/lava, /turf/open/space, /turf/open/water, - /turf/open/chasm, + /turf/open/chasm) ) - var/static/list/immunelist = typecacheof( + var/static/list/immunelist = typecacheof(list( /turf/closed/wall/mineral/diamond, /turf/closed/indestructible, - /turf/open/indestructible, + /turf/open/indestructible) ) var/static/list/resistlist = typecacheof( - /turf/closed/wall/r_wall, + /turf/closed/wall/r_wall ) /datum/component/thermite/Initialize(_amount)