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
@@ -48,7 +48,6 @@
M.buffer = src
to_chat(user, "<span class = 'caution'>You save the data in the [I.name]'s buffer.</span>")
if(exchange_parts(user, I))
return
@@ -72,26 +71,21 @@
if(anchored)
anchored = 0
to_chat(user, "<span class = 'caution'> The [src] can now be moved.</span>")
else if(!anchored)
anchored = 1
to_chat(user, "<span class = 'caution'> The [src] is now secured.</span>")
if(istype(W, /obj/item/weapon/screwdriver))
if(stage == 0)
playsound(src, 'sound/items/Screwdriver.ogg', 50, 1)
to_chat(user, "<span class = 'caution'> You unscrew the telepad's tracking beacon.</span>")
stage = 1
else if(stage == 1)
playsound(src, 'sound/items/Screwdriver.ogg', 50, 1)
to_chat(user, "<span class = 'caution'> You screw in the telepad's tracking beacon.</span>")
stage = 0
if(istype(W, /obj/item/weapon/weldingtool) && stage == 1)
playsound(src, 'sound/items/Welder.ogg', 50, 1)
to_chat(user, "<span class = 'caution'> You disassemble the telepad.</span>")
new /obj/item/stack/sheet/metal(get_turf(src))
new /obj/item/stack/sheet/glass(get_turf(src))
qdel(src)
@@ -108,7 +102,6 @@
/obj/item/device/telepad_beacon/attack_self(mob/user as mob)
if(user)
to_chat(user, "<span class = 'caution'> Locked In</span>")
new /obj/machinery/telepad_cargo(user.loc)
playsound(src, 'sound/effects/pop.ogg', 100, 1, 1)
qdel(src)
@@ -144,7 +137,6 @@
..(user)
to_chat(user, "There are [round(rcell.charge/chargecost)] charge\s left.")
/obj/item/weapon/rcs/Destroy()
if(rcell)
qdel(rcell)
@@ -157,13 +149,11 @@
mode = 1
playsound(src.loc, 'sound/effects/pop.ogg', 50, 0)
to_chat(user, "<span class = 'caution'> The telepad locator has become uncalibrated.</span>")
else
mode = 0
playsound(src.loc, 'sound/effects/pop.ogg', 50, 0)
to_chat(user, "<span class = 'caution'> You calibrate the telepad locator.</span>")
/obj/item/weapon/rcs/emag_act(user as mob)
if(!emagged)
emagged = 1
@@ -171,5 +161,4 @@
s.set_up(5, 1, src)
s.start()
to_chat(user, "<span class = 'caution'> You emag the RCS. Activate it to toggle between modes.</span>")
return
-5
View File
@@ -46,7 +46,6 @@
..(user)
to_chat(user, "There are [crystals.len ? crystals.len : "no"] bluespace crystal\s in the crystal slots.")
/obj/machinery/computer/telescience/initialize()
..()
for(var/i = 1; i <= starting_crystals; i++)
@@ -56,7 +55,6 @@
if(istype(W, /obj/item/weapon/ore/bluespace_crystal))
if(crystals.len >= max_crystals)
to_chat(user, "<span class='warning'>There are not enough crystal slots.</span>")
return
user.drop_item()
crystals += W
@@ -76,7 +74,6 @@
telepad = M.buffer
M.buffer = null
to_chat(user, "<span class = 'caution'>You upload the data from the [W.name]'s buffer.</span>")
updateUsrDialog()
else
..()
@@ -84,12 +81,10 @@
/obj/machinery/computer/telescience/emag_act(user as mob)
if (!emagged)
to_chat(user, "\blue You scramble the Telescience authentication key to an unknown signal. You should be able to teleport to more places now!")
emagged = 1
else
to_chat(user, "\red The machine seems unaffected by the card swipe...")
/obj/machinery/computer/telescience/attack_ai(mob/user)
src.attack_hand(user)