Reduce lines by removing blank lines added by PJ's script

This commit is contained in:
Tigercat2000
2016-04-05 08:25:57 -07:00
parent 9d430844c3
commit 78f53553f8
1049 changed files with 3 additions and 8630 deletions
-11
View File
@@ -18,17 +18,14 @@
opened = !opened
if(opened)
to_chat(usr, "\blue The access panel is now open.")
else
to_chat(usr, "\blue The access panel is now closed.")
return
attackby(obj/item/weapon/aiModule/module as obj, mob/user as mob, params)
if (user.z > 6)
to_chat(user, "\red <b>Unable to establish a connection</b>: \black You're too far away from the station!")
return
if(istype(module, /obj/item/weapon/aiModule))
module.install(src)
@@ -39,21 +36,17 @@
attack_hand(var/mob/user as mob)
if(src.stat & NOPOWER)
to_chat(usr, "The upload computer has no power!")
return
if(src.stat & BROKEN)
to_chat(usr, "The upload computer is broken!")
return
src.current = select_active_ai(user)
if (!src.current)
to_chat(usr, "No active AIs detected.")
else
to_chat(usr, "[src.current.name] selected for law changes.")
return
@@ -75,19 +68,15 @@
attack_hand(var/mob/user as mob)
if(src.stat & NOPOWER)
to_chat(usr, "The upload computer has no power!")
return
if(src.stat & BROKEN)
to_chat(usr, "The upload computer is broken!")
return
src.current = freeborg()
if (!src.current)
to_chat(usr, "No free cyborgs detected.")
else
to_chat(usr, "[src.current.name] selected for law changes.")
return