From 856b6ba853dad76f272ebe1880b1154ae385ce5a Mon Sep 17 00:00:00 2001 From: Dax Dupont Date: Wed, 11 Oct 2017 22:20:44 +0200 Subject: [PATCH 1/2] Allows sillicons to use vending machines. (#31541) * Allows borgs to use vending machines. * Allows AI to use vending machines. --- code/game/machinery/vending.dm | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/code/game/machinery/vending.dm b/code/game/machinery/vending.dm index bf08e98992..c8775a8121 100644 --- a/code/game/machinery/vending.dm +++ b/code/game/machinery/vending.dm @@ -411,16 +411,6 @@ if(..()) return - if(issilicon(usr)) - if(iscyborg(usr)) - var/mob/living/silicon/robot/R = usr - if(!(R.module && istype(R.module, /obj/item/robot_module/butler) )) - to_chat(usr, "The vending machine refuses to interface with you, as you are not in its target demographic!") - return - else - to_chat(usr, "The vending machine refuses to interface with you, as you are not in its target demographic!") - return - if(href_list["remove_coin"]) if(!(coin || bill)) to_chat(usr, "There is no money in this machine.")