Quick fix for Cyborgs being unable to mend/cut/pulse camera wires.

git-svn-id: http://tgstation13.googlecode.com/svn/trunk@4808 316c924e-a436-60f5-8080-3fe189b3f50e
This commit is contained in:
giacomand@gmail.com
2012-10-04 22:21:42 +00:00
parent 8c387f2158
commit baf9b75e2b

View File

@@ -99,7 +99,7 @@
src.interact(usr)
/obj/machinery/camera/proc/interact(mob/living/user as mob)
if(!panel_open || isAI(user))
if(!panel_open)
return
user.machine = src
@@ -135,7 +135,7 @@
/obj/machinery/camera/Topic(href, href_list)
..()
if (((in_range(src, usr) && istype(src.loc, /turf))) && !istype(usr, /mob/living/silicon))
if (in_range(src, usr) && istype(src.loc, /turf))
usr.machine = src
if (href_list["wires"])
var/t1 = text2num(href_list["wires"])