From df71e810de428f32bdc916f64c1fd2d98f9d5929 Mon Sep 17 00:00:00 2001 From: alex-gh Date: Tue, 13 May 2014 17:17:30 +0200 Subject: [PATCH] Bluespace anomalies should no longer move disposal outlets --- code/modules/events/tgevents/anomaly_bluespace.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/modules/events/tgevents/anomaly_bluespace.dm b/code/modules/events/tgevents/anomaly_bluespace.dm index 02a6d9e50a4..b159047771e 100644 --- a/code/modules/events/tgevents/anomaly_bluespace.dm +++ b/code/modules/events/tgevents/anomaly_bluespace.dm @@ -48,6 +48,7 @@ if(istype(A, /obj/item/device/radio/beacon)) continue // don't teleport beacons because that's just insanely stupid if(A.anchored && istype(A, /obj/machinery)) continue if(istype(A, /obj/structure/disposalpipe )) continue + if(istype(A, /obj/structure/disposaloutlet)) continue if(istype(A, /obj/structure/cable )) continue var/turf/newloc = locate(A.x + x_distance, A.y + y_distance, TO.z) // calculate the new place