Merge pull request #259 from sheepishgoat/cargo-pad-fix

fixes supply pad
This commit is contained in:
evilew
2024-09-07 14:23:04 +02:00
committed by GitHub
+8
View File
@@ -165,6 +165,14 @@
if(isliving(ROI) && !check_mob_teleportability(ROI))
continue
var/able_to_teleport_item = TRUE
for(var/mob/living/found_mob in ROI.contents)
if(isliving(found_mob) && !check_mob_teleportability(found_mob))
able_to_teleport_item = FALSE
if(!able_to_teleport_item)
continue
// if is anchored, don't let through
if(ROI.anchored)
if(isliving(ROI))