diff --git a/code/modules/mob/living/simple_animal/bot/bot.dm b/code/modules/mob/living/simple_animal/bot/bot.dm index 41e2e61507b..dee375cf5ac 100644 --- a/code/modules/mob/living/simple_animal/bot/bot.dm +++ b/code/modules/mob/living/simple_animal/bot/bot.dm @@ -213,6 +213,8 @@ return TRUE if(!(bot_cover_flags & BOT_COVER_LOCKED)) // Unlocked. return TRUE + if(!istype(user)) // Non-living mobs shouldn't be manipulating bots (like observes using the botkeeper UI). + return FALSE var/obj/item/card/id/used_id = id || user.get_idcard(TRUE)