Jump to content

Caviar recipe mistake?


__orange
  • Version: PC/MAC/Linux Fixed

In dont_starve\data\DLC0002\scripts\preparedfoods.lua

line 555:

	caviar =
	{
		test = function(cooker, names, tags) return (names.roe or names.roe == 3) and tags.veggie end,
		...
	},	

Should it be (names.roe and names.roe == 3) ?


Steps to Reproduce
.



User Feedback


A developer has marked this issue as fixed. This means that the issue has been addressed in the current development build and will likely be in the next update.

should be:
 

test = function(cooker, names, tags) return (names.roe or names.roe_cooked== 3) and tags.veggie end,

nice find. Thanks :)

Share this comment


Link to comment
Share on other sites


×
  • Create New...