Chef buffs chef buffs tastier food.

"The strong flavor of" was always in game but someone put it behind an else if statement that would never proc.
Now if there's more than 45% (or 30% if you are a lizzard, hissss) of a reagent in a beaker, you will taste a strong flavor! 
Hurrah!
This commit is contained in:
B1gb3ast
2019-12-18 17:37:08 +01:00
committed by GitHub
parent 0e6ac60a66
commit 84a413a43a

View File

@@ -1114,7 +1114,7 @@
var/intensity_desc = "a hint of"
if(percent > minimum_percent * 2 || percent == 100)
intensity_desc = ""
else if(percent > minimum_percent * 3)
if(percent > minimum_percent * 3) // CITCHANGE - food now tasty
intensity_desc = "the strong flavor of"
if(intensity_desc != "")
out += "[intensity_desc] [taste_desc]"