Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem








Recipe works without problems. Try to disable all food mods besides chocolate and write if error persists.
local chocolate_milk_recipe, because when I changed priority of chocolate milk to 1, and fresh milk to 10, it's fixed the problem and now I get from 4 raw milk one fresh milk and from 3 raw milk and one cacao I recieve chocolate milk
test = function(cooker, names, tags) return ((tags.cacao_cooked and tags.cacao_cooked>=1) and (tags.dairy and tags.dairy>=1) or (tags.rawmilk and tags.rawmilk>=1) or (tags.dairy and tags.rawmilk and tags.rawmilk+tags.dairy>=1)) and not tags.meat and not tags.fruit and not tags.decoration and not tags.egg and not tags.frozen and not tags.inedible and not tags.sweetener and not tags.veggie end,
there is mistake in brackets: for making chocolate milk required (cacao_cooked > 1 and dairy item > 1 OR rawmilk>=1 OR tags.rawmilk+tags.dairy >= 1), so if change this line to
test = function(cooker, names, tags) return (tags.cacao_cooked and tags.cacao_cooked>=1) and ((tags.dairy and tags.dairy>=1) or (tags.rawmilk and tags.rawmilk>=1) or (tags.dairy and tags.rawmilk and tags.rawmilk+tags.dairy>=1)) and not tags.meat and not tags.fruit and not tags.decoration and not tags.egg and not tags.frozen and not tags.inedible and not tags.sweetener and not tags.veggie end,
it will be require cacao_cooked >1 AND ((tags.dairy and tags.dairy>=1) or (tags.rawmilk and tags.rawmilk>=1) or (tags.dairy and tags.rawmilk and tags.rawmilk+tags.dairy>=1))
for me it fix the problem with default prioritys (1 for fresh milk, 10 for chocolate milk).
file path (Documents / Klei / DoNotStarve / log.txt)
Chocolate+ is broken. No idea why it's stopped working, but for some reason it's started crashing my game whenever I attempt to look into the Mods page. This Mod did work for me the last time I played, which was only a month ago at most.
I removed every Mod I had subscribed, then tried each individually until I was sure of the culprit, so it's definatively this Mod that's cause of the issue.
Log message: ..\source\animlib\animmanager.cpp(401) :: Tried to add build [moditem] from file [../mods/workshop-293230292/anim/cacao.zip] but we've already added a build with that name!
Any advice?