From 4157c30fd84ec41c19776d307cd3cf351152ece8 Mon Sep 17 00:00:00 2001 From: Robustin Date: Thu, 28 Dec 2017 15:53:47 -0500 Subject: [PATCH 1/2] Fixes ethanol + book reaction message (#33867) --- code/modules/reagents/chemistry/reagents/alcohol_reagents.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/reagents/chemistry/reagents/alcohol_reagents.dm b/code/modules/reagents/chemistry/reagents/alcohol_reagents.dm index 00fd7d56a3..fe58e4ea77 100644 --- a/code/modules/reagents/chemistry/reagents/alcohol_reagents.dm +++ b/code/modules/reagents/chemistry/reagents/alcohol_reagents.dm @@ -51,9 +51,9 @@ All effects don't start immediately, but rather get worse over time; the rate is if(reac_volume >= 5) var/obj/item/book/affectedbook = O affectedbook.dat = null - to_chat(usr, "Through thorough application, you wash away [affectedbook]'s writing.") + O.visible_message("[O]'s writing is washed away by [name]!") else - to_chat(usr, "The ink smears, but doesn't wash away!") + O.visible_message("[O]'s ink is smeared by [name], but doesn't wash away!") 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.