From 9a2bcce710a65f4cdebe6e5692d03602f0f38822 Mon Sep 17 00:00:00 2001 From: Heroman Date: Sun, 7 Apr 2019 10:00:25 +1000 Subject: [PATCH] Removes ability for non-player mice to open doors --- code/game/machinery/doors/door.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/game/machinery/doors/door.dm b/code/game/machinery/doors/door.dm index abcf6b41eb1..c25bde5ed6f 100644 --- a/code/game/machinery/doors/door.dm +++ b/code/game/machinery/doors/door.dm @@ -109,6 +109,8 @@ M.last_bumped = world.time if(M.restrained() && !check_access(null)) return + else if(istype(M, /mob/living/simple_mob/animal/passive/mouse) && !(M.ckey)) //VOREStation Edit: Make wild mice + return //VOREStation Edit: unable to open doors else bumpopen(M)