From 7841faa3a90942bfb5a6c61411c0b8eb0409da55 Mon Sep 17 00:00:00 2001 From: B1gb3ast Date: Wed, 18 Dec 2019 19:24:25 +0100 Subject: [PATCH] Actually hold on So that not everything in the game now tastes like STRONG FLAVOUR. That'd be annoying. --- code/modules/reagents/chemistry/holder.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/reagents/chemistry/holder.dm b/code/modules/reagents/chemistry/holder.dm index 5dc5f0db4c..f683324105 100644 --- a/code/modules/reagents/chemistry/holder.dm +++ b/code/modules/reagents/chemistry/holder.dm @@ -1112,9 +1112,9 @@ if(percent < minimum_percent) continue var/intensity_desc = "a hint of" - if(percent > minimum_percent * 2 || percent == 100) + if(percent <= minimum_percent * 3 || percent == 100) intensity_desc = "" - if(percent > minimum_percent * 3) // CITCHANGE - food now tasty + else if(percent > minimum_percent * 3) // CITCHANGE - food now tasty intensity_desc = "the strong flavor of" if(intensity_desc != "") out += "[intensity_desc] [taste_desc]"