From b680aa1fb5ec00adf9ea6952e9a590dfdb8a7bb9 Mon Sep 17 00:00:00 2001 From: Alberyk Date: Fri, 27 Oct 2017 17:56:36 -0200 Subject: [PATCH] Borg and dionae vines fixes (#3758) Fixes emmaged borgs being locked down by the robotics console. Also, fixes a dionae structure being dense, turnings dionae mazes into a pain to use. --- code/game/machinery/computer/robot.dm | 3 +++ code/modules/random_map/automata/diona.dm | 1 + 2 files changed, 4 insertions(+) diff --git a/code/game/machinery/computer/robot.dm b/code/game/machinery/computer/robot.dm index 65e02022050..8dd6034cad7 100644 --- a/code/game/machinery/computer/robot.dm +++ b/code/game/machinery/computer/robot.dm @@ -85,6 +85,9 @@ user << "Access Denied." return + if(target.emagged) + return + var/choice = input("Really [target.lockcharge ? "unlock" : "lockdown"] [target.name] ?") in list ("Yes", "No") if(choice != "Yes") return diff --git a/code/modules/random_map/automata/diona.dm b/code/modules/random_map/automata/diona.dm index 5b0f437cd25..5c108faddc3 100644 --- a/code/modules/random_map/automata/diona.dm +++ b/code/modules/random_map/automata/diona.dm @@ -24,6 +24,7 @@ name = "alien vines" desc = "Thick, heavy vines of some sort." icon_state = "vines3" + density = 0 var/growth = 0 /obj/structure/diona/vines/proc/spread()