Removes all \red and \blue's (#2309)

Removes all \red's and \blues in favor of span classes. \red things that were bold were replaced with danger because it's warning but bold.
This commit is contained in:
Ron
2017-05-21 12:07:57 +03:00
committed by skull132
parent fe396373c6
commit 790480c8da
226 changed files with 1027 additions and 1027 deletions
+3 -3
View File
@@ -89,7 +89,7 @@
attach_assembly(var/obj/item/device/assembly/A, var/mob/user)
holder = new/obj/item/device/assembly_holder(get_turf(src))
if(holder.attach(A,src,user))
user << "\blue You attach \the [A] to \the [src]!"
user << "<span class='notice'>You attach \the [A] to \the [src]!</span>"
return 1
return 0
@@ -102,9 +102,9 @@
return
if(isscrewdriver(W))
if(toggle_secure())
user << "\blue \The [src] is ready!"
user << "<span class='notice'>\The [src] is ready!</span>"
else
user << "\blue \The [src] can now be attached!"
user << "<span class='notice'>\The [src] can now be attached!</span>"
return
..()
return