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()