Improves feedback messages.

This commit is contained in:
Remie Richards
2015-04-20 22:02:57 +01:00
parent d7b5ad80a6
commit 0fbdadb4e4
2 changed files with 4 additions and 4 deletions
@@ -247,13 +247,13 @@
var/obj/item/weapon/weldingtool/WT = W
if(WT.remove_fuel(0,user))
playsound(loc, 'sound/items/Welder.ogg', 40, 1)
user << "<span class='notice'>Now welding \the [src].</span>"
user << "<span class='notice'>Now welding the scrubber.</span>"
if(do_after(user, 20))
if(!src || !WT.isOn())
return
playsound(src.loc, 'sound/items/Welder2.ogg', 50, 1)
if(!welded)
user.visible_message("[user] welds the scrubber shut.","You weld the vent shit.", "You hear welding.")
user.visible_message("[user] welds the scrubber shut.","You weld the scrubber shut.", "You hear welding.")
welded = 1
update_icon()
else