diff --git a/code/game/objects/items/weapons/candle.dm b/code/game/objects/items/weapons/candle.dm index 586012aaf1d..841fbcfb85a 100644 --- a/code/game/objects/items/weapons/candle.dm +++ b/code/game/objects/items/weapons/candle.dm @@ -29,15 +29,15 @@ var/obj/item/weapon/weldingtool/WT = W if(WT.isOn()) //Badasses dont get blinded by lighting their candle with a welding tool light() - to_chat(user, span("notice", "\The [user] casually lights \the [name] with [W].")) + to_chat(user, span("notice", "\The [user] casually lights \the [name] with [W].")) else if(isflamesource(W)) light() - to_chat(user, span("notice", "\The [user] lights \the [name].")) + to_chat(user, span("notice", "\The [user] lights \the [name].")) else if(istype(W, /obj/item/weapon/flame/candle)) var/obj/item/weapon/flame/candle/C = W if(C.lit) light() - to_chat(user, span("notice", "\The [user] lights \the [name].")) + to_chat(user, span("notice", "\The [user] lights \the [name].")) /obj/item/weapon/flame/candle/proc/light() if(!src.lit) diff --git a/code/modules/clothing/head/misc_special.dm b/code/modules/clothing/head/misc_special.dm index 3de579c1f3e..3c54afafdad 100644 --- a/code/modules/clothing/head/misc_special.dm +++ b/code/modules/clothing/head/misc_special.dm @@ -188,15 +188,15 @@ var/obj/item/weapon/weldingtool/WT = W if(WT.isOn()) //Badasses dont get blinded by lighting their candle with a welding tool light() - to_chat(user, span("notice", "\The [user] casually lights \the [name] with [W].")) + to_chat(user, span("notice", "\The [user] casually lights \the [name] with [W].")) else if(isflamesource(W)) light() - to_chat(user, span("notice", "\The [user] lights \the [name].")) + to_chat(user, span("notice", "\The [user] lights \the [name].")) else if(istype(W, /obj/item/weapon/flame/candle)) var/obj/item/weapon/flame/candle/C = W if(C.lit) light() - to_chat(user, span("notice", "\The [user] lights \the [name].")) + to_chat(user, span("notice", "\The [user] lights \the [name].")) /obj/item/clothing/head/pumpkin/lantern/proc/light() if(!src.lit)