Romah Posted December 12, 2015 Share Posted December 12, 2015 Adding 2 seaweed, 1 monster jerky and a stick causes a crash 100% of the time for me..Hope this helps and thank you for developing an awesome game! Link to comment https://forums.kleientertainment.com/forums/topic/60669-bug-crock-pot-seaweed-monster-jerky-recipe-crash/ Share on other sites More sharing options...
Romah Posted December 12, 2015 Author Share Posted December 12, 2015 [1 coconut + 2 seaweed + 1 stick] also caused a crash Link to comment https://forums.kleientertainment.com/forums/topic/60669-bug-crock-pot-seaweed-monster-jerky-recipe-crash/#findComment-696674 Share on other sites More sharing options...
Miiza91 Posted December 19, 2015 Share Posted December 19, 2015 If you still have the problem, here's a fix for it:1: browse to your don't starve folder2: enter folder "data" followed by "DLC0002"3: enter folder "scripts" and open the file "preparedfoods.lua" with your text editor of choice4: replace line 394 (it's the source of the crash) with this line:test = function(cooker, names, tags) return names.seaweed == 2 and tags.fish and tags.fish >= 1 end, original line 394:test = function(cooker, names, tags) return names.seaweed == 2 and tags.fish >= 1 end, Reason of the crash for those who are interested,Original line have two requirements that it have to fulfill:1: number of objects with the name "seaweed" should be equal to 22: the tag value of "fish" should be 1 or higherMissing requirement:3: the tag "fish" should exist in the crock pot Due to the missing requirement you try to compare an empty value with a value, which is invalid. Link to comment https://forums.kleientertainment.com/forums/topic/60669-bug-crock-pot-seaweed-monster-jerky-recipe-crash/#findComment-699071 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.
Please be aware that the content of this thread may be outdated and no longer applicable.