From 8be57cd730a9b70f0ecaa8f7f90d136e364d7752 Mon Sep 17 00:00:00 2001 From: Hubblenaut Date: Wed, 16 Dec 2015 12:57:05 +0100 Subject: [PATCH] Prevents blob from growing over asteroid walls --- code/modules/blob/blob.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/blob/blob.dm b/code/modules/blob/blob.dm index a2de592b84..7db20fe1ce 100644 --- a/code/modules/blob/blob.dm +++ b/code/modules/blob/blob.dm @@ -54,7 +54,7 @@ update_icon() /obj/effect/blob/proc/expand(var/turf/T) - if(istype(T, /turf/unsimulated/) || istype(T, /turf/space)) + if(istype(T, /turf/unsimulated/) || istype(T, /turf/space) || (istype(T, /turf/simulated/mineral) && T.density)) return if(istype(T, /turf/simulated/wall)) var/turf/simulated/wall/SW = T