From d64cca1b7e1a45372bf35bb1de600fda3adf75ec Mon Sep 17 00:00:00 2001 From: lm40 Date: Tue, 11 Apr 2017 14:53:20 -0400 Subject: [PATCH] Fixes digestion messages displaying to everyone nearby (#349) * Update bellymodes_vr.dm * Update bellymodes_vr.dm * fuck * actually no i won't --- code/modules/vore/eating/bellymodes_vr.dm | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/code/modules/vore/eating/bellymodes_vr.dm b/code/modules/vore/eating/bellymodes_vr.dm index 559388f542..dcd42d9377 100644 --- a/code/modules/vore/eating/bellymodes_vr.dm +++ b/code/modules/vore/eating/bellymodes_vr.dm @@ -42,8 +42,8 @@ digest_alert_prey = replacetext(digest_alert_prey,"%belly",lowertext(name)) //Send messages - owner << "" + digest_alert_owner + "" - M << "" + digest_alert_prey + "" + to_chat(owner, "[digest_alert_owner]") + M.visible_message("You watch as [owner]'s form loses its additions.", "[digest_alert_prey]") owner.nutrition += 400 // so eating dead mobs gives you *something*. playsound(owner.loc, "death_gurgles", 50, 0, -5) @@ -84,10 +84,8 @@ digest_alert_prey = replacetext(digest_alert_prey,"%belly",lowertext(name)) //Send messages - owner << "" + digest_alert_owner + "" - M << "" + digest_alert_prey + "" - M.visible_message("[digest_alert_owner]", "[digest_alert_prey]", - "You watch as [owner]'s form lose its additions.") + to_chat(owner, "[digest_alert_owner]") + M.visible_message("You watch as [owner]'s form loses its additions.", "[digest_alert_prey]") owner.nutrition += 400 // so eating dead mobs gives you *something*. playsound(owner.loc, "death_gurgles", 50, 0, -5) digestion_death(M) @@ -112,4 +110,4 @@ M.adjustBruteLoss(-1) M.adjustFireLoss(-1) owner.nutrition -= 10 - return \ No newline at end of file + return