Replace all BYOND text macros

This commit is contained in:
Markolie
2017-02-21 15:41:37 +01:00
parent fb1cef8029
commit 6982014a6e
286 changed files with 1303 additions and 1311 deletions
+3 -3
View File
@@ -76,15 +76,15 @@
return 1
else
if(amount < 2)
to_chat(user, "\blue You need at least two rods to do this.")
to_chat(user, "<span class='notice'>You need at least two rods to do this.</span>")
return
to_chat(usr, "\blue Assembling grille...")
to_chat(usr, "<span class='notice'>Assembling grille...</span>")
if(!do_after(usr, 10, target = user))
return
var /obj/structure/grille/F = new /obj/structure/grille/ ( usr.loc )
to_chat(usr, "\blue You assemble a grille")
to_chat(usr, "<span class='notice'>You assemble a grille</span>")
F.add_fingerprint(usr)
use(2)
return
@@ -34,7 +34,7 @@
if(istype(W,/obj/item/stack/cable_coil))
var/obj/item/stack/cable_coil/CC = W
if(CC.amount < 5)
to_chat(user, "\b There is not enough wire in this coil. You need 5 lengths.")
to_chat(user, "<b>There is not enough wire in this coil. You need 5 lengths.</b>")
return
CC.use(5)
to_chat(user, "<span class='notice'>You attach wire to the [name].</span>")