From e7341d43841f559d7639cf14485bf0f39dad237f Mon Sep 17 00:00:00 2001 From: Kyle Spier-Swenson Date: Sun, 1 Nov 2015 12:03:50 -0800 Subject: [PATCH] Fixes shuttle docking ports being acted upon by the singulo Fixes #12677 --- code/modules/shuttle/shuttle.dm | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/code/modules/shuttle/shuttle.dm b/code/modules/shuttle/shuttle.dm index 7a20eda07af..96a203d17b2 100644 --- a/code/modules/shuttle/shuttle.dm +++ b/code/modules/shuttle/shuttle.dm @@ -21,7 +21,10 @@ //these objects are indestructable /obj/docking_port/Destroy() return QDEL_HINT_LETMELIVE - +/obj/docking_port/singularity_pull() + return +/obj/docking_port/singularity_act() + return 0 /obj/docking_port/shuttleRotate() return //we don't rotate with shuttles via this code. //returns a list(x0,y0, x1,y1) where points 0 and 1 are bounding corners of the projected rectangle @@ -633,4 +636,4 @@ T.color = color if(T.dir != dir) T.dir = dir - return T \ No newline at end of file + return T