From 2cb73bf1436d8e3b910a5d72f55b1b494aefe4c9 Mon Sep 17 00:00:00 2001 From: scrubmcnoob Date: Tue, 8 Dec 2015 20:04:48 -0500 Subject: [PATCH] Maintenance Drone Vent Crawling Allows Maintenance Drones to vent crawl around the station. Made a suggestion on the forums a while back and everyone was fine with it, it was a matter of finding some one to do it. I finally went through the code and found the correct code for this change. --- code/modules/mob/living/silicon/robot/drone/drone.dm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/code/modules/mob/living/silicon/robot/drone/drone.dm b/code/modules/mob/living/silicon/robot/drone/drone.dm index 8bd45097fef..35b862bfa30 100644 --- a/code/modules/mob/living/silicon/robot/drone/drone.dm +++ b/code/modules/mob/living/silicon/robot/drone/drone.dm @@ -14,6 +14,7 @@ density = 0 req_access = list(access_engine, access_robotics) local_transmit = 1 + ventcrawler = 2 // 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. @@ -339,4 +340,4 @@ /mob/living/silicon/robot/drone/update_canmove() . = ..() - density = 0 //this is reset every canmove update otherwise \ No newline at end of file + density = 0 //this is reset every canmove update otherwise