From a8ecbeb518ae4e6ae224f392d8a80e0dccf00885 Mon Sep 17 00:00:00 2001 From: Zuhayr Date: Sun, 1 Jun 2014 02:38:02 +0930 Subject: [PATCH] Drone door fix. --- code/modules/mob/living/silicon/robot/drone/drone.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/modules/mob/living/silicon/robot/drone/drone.dm b/code/modules/mob/living/silicon/robot/drone/drone.dm index ebf427720d..8c07974133 100644 --- a/code/modules/mob/living/silicon/robot/drone/drone.dm +++ b/code/modules/mob/living/silicon/robot/drone/drone.dm @@ -11,8 +11,7 @@ pass_flags = PASSTABLE braintype = "Robot" lawupdate = 0 - density = 0 - small = 1 + density = 1 // We need to keep track of a few module items so we don't need to do list operations // every time we need them. These get set in New() after the module is chosen. @@ -310,7 +309,8 @@ src << "If a crewmember has noticed you, you are probably breaking your third law." /mob/living/silicon/robot/drone/Bump(atom/movable/AM as mob|obj, yes) - if (!yes) return + if (!yes || istype(AM,/mob/living)) return + ..() if (istype(AM, /obj/machinery/recharge_station)) var/obj/machinery/recharge_station/F = AM F.move_inside()