mirror of
https://github.com/vgstation-coders/vgstation13.git
synced 2025-12-10 18:32:03 +00:00
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:
@@ -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"])
|
||||
|
||||
Reference in New Issue
Block a user