From 0a4b625fe3452d6588faf16dca4e410ad2fe39d2 Mon Sep 17 00:00:00 2001 From: alsoandanswer Date: Thu, 14 Nov 2019 04:23:24 +0800 Subject: [PATCH] fuck --- code/game/objects/items/weapons/candle.dm | 5 ++--- code/modules/clothing/head/misc_special.dm | 5 ++--- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/code/game/objects/items/weapons/candle.dm b/code/game/objects/items/weapons/candle.dm index 97637812ad6..768444f4884 100644 --- a/code/game/objects/items/weapons/candle.dm +++ b/code/game/objects/items/weapons/candle.dm @@ -28,7 +28,7 @@ if(W.iswelder()) var/obj/item/weapon/weldingtool/WT = W if(WT.isOn()) //Badasses dont get blinded by lighting their candle with a welding tool - light() + light(span("notice", "\The [user] casually lights \the [name] with [W].")) else if(isflamesource(W)) light() else if(istype(W, /obj/item/weapon/flame/candle)) @@ -37,9 +37,8 @@ light() -/obj/item/weapon/flame/candle/proc/light() +/obj/item/weapon/flame/candle/proc/light(var/flavor_text = span("notice", "\The [usr] lights \the [name].")) if(!src.lit) - to_chat(user, span("\The [user] lights \the [name].")) src.lit = 1 playsound(src.loc, 'sound/items/cigs_lighters/cig_light.ogg', 50, 1) //src.damtype = "fire" diff --git a/code/modules/clothing/head/misc_special.dm b/code/modules/clothing/head/misc_special.dm index fc46f5c64e9..154b29de0c6 100644 --- a/code/modules/clothing/head/misc_special.dm +++ b/code/modules/clothing/head/misc_special.dm @@ -187,7 +187,7 @@ if(W.iswelder()) var/obj/item/weapon/weldingtool/WT = W if(WT.isOn()) //Badasses dont get blinded by lighting their candle with a welding tool - light(user, span("notice", "\The [user] casually lights \the [name] with [W].")) + light(span("notice", "\The [user] casually lights \the [name] with [W].")) else if(isflamesource(W)) light() else if(istype(W, /obj/item/weapon/flame/candle)) @@ -195,10 +195,9 @@ if(C.lit) light() -/obj/item/clothing/head/pumpkin/lantern/proc/light() +/obj/item/clothing/head/pumpkin/lantern/proc/light(var/flavor_text = span("notice", "\The [usr] lights \the [name].")) if(!src.lit) src.lit = 1 - to_chat(user, span("\The [user] lights \the [name].")) playsound(src.loc, 'sound/items/cigs_lighters/cig_light.ogg', 50, 1) //src.damtype = "fire" for(var/mob/O in viewers(usr, null))