From b80dad03299a98bbec0d6b1f77c2f0dd504b0820 Mon Sep 17 00:00:00 2001 From: Atlantis Date: Wed, 29 Jul 2015 19:58:01 +0200 Subject: [PATCH] Fixes #10355 - Bots can now be unlocked when you have one of the required accesses, instead of requiring all of them. - In other words, security officers can once again unlock beepsky. I believe no other bot uses more than one access level for unlocking. --- code/modules/mob/living/bot/bot.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/bot/bot.dm b/code/modules/mob/living/bot/bot.dm index 36110c600cb..cfaee275362 100644 --- a/code/modules/mob/living/bot/bot.dm +++ b/code/modules/mob/living/bot/bot.dm @@ -25,7 +25,7 @@ botcard.access = botcard_access.Copy() access_scanner = new /obj(src) - access_scanner.req_access = req_access.Copy() + access_scanner.req_one_access = req_access.Copy() /mob/living/bot/Life() ..()