From 6ec9c2ebb5eb6af4cac157d48fdb2e14b627d5dd Mon Sep 17 00:00:00 2001 From: Verkister Date: Tue, 17 Nov 2020 14:46:55 +0200 Subject: [PATCH] Fixes flavor double post on vore The flavor message is already handled by the belly obj Entered proc, so having it in the ingestion proc as well is kinda redundant. --- code/modules/vore/eating/living_vr.dm | 4 ---- 1 file changed, 4 deletions(-) diff --git a/code/modules/vore/eating/living_vr.dm b/code/modules/vore/eating/living_vr.dm index a35fa5bf1b7..653dac4017f 100644 --- a/code/modules/vore/eating/living_vr.dm +++ b/code/modules/vore/eating/living_vr.dm @@ -519,10 +519,6 @@ if(!ishuman(user)) user.update_icons() - // Flavor handling - if(belly.can_taste && prey.get_taste_message(FALSE)) - to_chat(belly.owner, "[prey] tastes of [prey.get_taste_message(FALSE)].") - // Inform Admins if(pred == user) add_attack_logs(pred, prey, "Eaten via [belly.name]")