usr << to O.visible_message() (#246)

This commit is contained in:
TalkingCactus
2017-02-25 12:06:51 -05:00
committed by GitHub
parent 7e75b904ef
commit be40ffe334
@@ -43,14 +43,14 @@ All effects don't start immediately, but rather get worse over time; the rate is
if(istype(O,/obj/item/weapon/paper))
var/obj/item/weapon/paper/paperaffected = O
paperaffected.clearpaper()
usr << "<span class='notice'>[paperaffected]'s ink washes away.</span>"
O.visible_message("<span class='notice'>[paperaffected]'s ink washes away.</span>")
if(istype(O,/obj/item/weapon/book))
if(reac_volume >= 5)
var/obj/item/weapon/book/affectedbook = O
affectedbook.dat = null
usr << "<span class='notice'>Through thorough application, you wash away [affectedbook]'s writing.</span>"
O.visible_message("<span class='notice'>[affectedbook]'s writing washes away.</span>")
else
usr << "<span class='warning'>The ink smears, but doesn't wash away!</span>"
O.visible_message("<span class='warning'>The ink smears, but doesn't wash away!</span>")
return
/datum/reagent/consumable/ethanol/reaction_mob(mob/living/M, method=TOUCH, reac_volume)//Splashing people with ethanol isn't quite as good as fuel.