Fixed a pretty horrible bug with my fix to borg lockdown that made it impossible for anyone to interact with the world via clicking on things.

git-svn-id: http://tgstation13.googlecode.com/svn/trunk@543 316c924e-a436-60f5-8080-3fe189b3f50e
This commit is contained in:
n3ophyt3@gmail.com
2010-12-05 20:48:10 +00:00
parent f35ae5edf9
commit 5ec1135aef

View File

@@ -194,7 +194,9 @@
var/mob/living/silicon/ai/ai = usr
if (ai.control_disabled)
return
if (usr:lockcharge) return
if (istype (usr, /mob/living/silicon/robot))
var/mob/living/silicon/robot/bot = usr
if (bot.lockcharge) return
..()