Examine change passthrough

This commit is contained in:
clusterfack
2015-01-08 03:04:52 -06:00
parent 87c12062ac
commit 4f63b6870d
83 changed files with 391 additions and 441 deletions

View File

@@ -25,7 +25,7 @@
opened = 1
if(istype(W, /obj/item/bluespace_crystal) && opened)
if(amplifier)
user << "\red There's something in the booster coil already."
user << "<span class='warning'>There's something in the booster coil already.</span>"
return
playsound(src, 'sound/weapons/Genhit.ogg', 50, 1)
user << "<span class = 'caution'> You jam \the [W] into \the [src]'s booster coil.</span>"
@@ -34,7 +34,7 @@
amplifier=W
return
if(istype(W, /obj/item/weapon/crowbar) && opened && amplifier)
user << "\blue You carefully pry \the [amplifier] from \the [src]."
user << "<span class='notice'>You carefully pry \the [amplifier] from \the [src].</span>"
var/obj/item/bluespace_crystal/C=amplifier
C.loc=get_turf(src)
amplifier=null
@@ -122,7 +122,7 @@
/obj/item/weapon/rcs/examine(mob/user)
..()
user << "There are [rcharges] charges left."
user << "<span class='info'>There are [rcharges] charges left.</span>"
/obj/item/weapon/rcs/Destroy()
processing_objects.Remove(src)