Actually hold on

So that not everything in the game now tastes like STRONG FLAVOUR. That'd be annoying.
This commit is contained in:
B1gb3ast
2019-12-18 19:24:25 +01:00
committed by GitHub
parent 84a413a43a
commit 7841faa3a9
+2 -2
View File
@@ -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]"