mirror of
https://github.com/CHOMPstation/CHOMPstation.git
synced 2026-07-21 03:52:54 +01:00
Replaced all blue font with a custom colour
This commit is contained in:
@@ -75,7 +75,7 @@
|
||||
CC.update_icon()
|
||||
overlays = list()
|
||||
string_attached = null
|
||||
user << "<font color='blue'>You detach the string from the coin.</font>"
|
||||
user << "<font color='#6F6FE2'>You detach the string from the coin.</font>"
|
||||
else ..()
|
||||
|
||||
/obj/item/weapon/coin/attack_self(mob/user as mob)
|
||||
|
||||
@@ -82,7 +82,7 @@
|
||||
if(PROCESS_SMELT)
|
||||
dat += "<font color='orange'>smelting</font>"
|
||||
if(PROCESS_COMPRESS)
|
||||
dat += "<font color='blue'>compressing</font>"
|
||||
dat += "<font color='#6F6FE2'>compressing</font>"
|
||||
if(PROCESS_ALLOY)
|
||||
dat += "<font color='gray'>alloying</font>"
|
||||
else
|
||||
|
||||
@@ -120,7 +120,7 @@
|
||||
usr.set_machine(src)
|
||||
src.add_fingerprint(usr)
|
||||
if(processing==1)
|
||||
usr << "<font color='blue'>The machine is processing.</font>"
|
||||
usr << "<font color='#6F6FE2'>The machine is processing.</font>"
|
||||
return
|
||||
if(href_list["choose"])
|
||||
chosen = href_list["choose"]
|
||||
|
||||
@@ -50,14 +50,14 @@
|
||||
..()
|
||||
if (istype(W, /obj/item/weapon/coin))
|
||||
var/obj/item/weapon/coin/C = W
|
||||
user << "<font color='blue'>You add the [C.name] into the bag.</font>"
|
||||
user << "<font color='#6F6FE2'>You add the [C.name] into the bag.</font>"
|
||||
usr.drop_item()
|
||||
contents += C
|
||||
if (istype(W, /obj/item/weapon/moneybag))
|
||||
var/obj/item/weapon/moneybag/C = W
|
||||
for (var/obj/O in C.contents)
|
||||
contents += O;
|
||||
user << "<font color='blue'>You empty the [C.name] into the bag.</font>"
|
||||
user << "<font color='#6F6FE2'>You empty the [C.name] into the bag.</font>"
|
||||
return
|
||||
|
||||
/obj/item/weapon/moneybag/Topic(href, href_list)
|
||||
|
||||
@@ -90,7 +90,7 @@
|
||||
for (var/obj/item/weapon/ore/O in contents)
|
||||
contents -= O
|
||||
O.loc = src.loc
|
||||
usr << "<font color='blue'>You empty the ore box.</font>"
|
||||
usr << "<font color='#6F6FE2'>You empty the ore box.</font>"
|
||||
|
||||
return
|
||||
|
||||
|
||||
Reference in New Issue
Block a user