This commit is contained in:
kevinz000
2020-04-15 23:19:32 -07:00
parent ee88164b11
commit cf547518b8
56 changed files with 62 additions and 62 deletions

View File

@@ -47,7 +47,7 @@ var/list/blobs = list()
set_light(0)
// Blob tiles are not actually dense so we need Special Code(tm).
/obj/structure/blob/CanPass(atom/movable/mover, turf/target)
/obj/structure/blob/CanAllowThrough(atom/movable/mover, turf/target)
if(istype(mover) && mover.checkpass(PASSBLOB))
return TRUE
else if(istype(mover, /mob/living))

View File

@@ -46,7 +46,7 @@
adjustBruteLoss(-maxHealth*0.0125)
adjustFireLoss(-maxHealth*0.0125)
/mob/living/simple_mob/hostile/blob/CanPass(atom/movable/mover, turf/target)
/mob/living/simple_mob/hostile/blob/CanAllowThrough(atom/movable/mover, turf/target)
if(istype(mover, /obj/structure/blob)) // Don't block blobs from expanding onto a tile occupied by a blob mob.
return TRUE
return ..()