From ffb03e1568ff07125490fda3754bf4db3272a525 Mon Sep 17 00:00:00 2001 From: Cyantime Date: Fri, 28 Jul 2017 20:01:16 -0400 Subject: [PATCH] Fixes always tasting, and sending taste message to wrong person --- code/modules/vore/eating/living_vr.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/vore/eating/living_vr.dm b/code/modules/vore/eating/living_vr.dm index 7cbb9882c9..be16db64d8 100644 --- a/code/modules/vore/eating/living_vr.dm +++ b/code/modules/vore/eating/living_vr.dm @@ -402,8 +402,8 @@ user.update_icons() // Flavor handling - if(prey.get_taste_message(0)) - to_chat(src, "[prey] tastes of [prey.get_taste_message(0)].") + if(belly_target.can_taste && prey.get_taste_message(0)) + to_chat(belly_target.owner, "[prey] tastes of [prey.get_taste_message(0)].") // Inform Admins if (pred == user)