ok travis

This commit is contained in:
alsoandanswer
2019-11-14 14:26:04 +08:00
parent 5acffc2e01
commit 8ec8f270cb
2 changed files with 6 additions and 6 deletions
+3 -3
View File
@@ -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].</span>"))
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].</span>"))
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].</span>"))
to_chat(user, span("notice", "\The [user] lights \the [name]."))
/obj/item/weapon/flame/candle/proc/light()
if(!src.lit)