Jump to content

Jellyfish jerky can't be added to the crock pot


rezecib
  • Pending

It looks from cooking.lua that it's supposed to be cookable in the crockpot, but because it has an alias mapping it from the actual prefab name to a name that isn't used anywhere else, it doesn't let you add it.


Steps to Reproduce
Try to add jellyjerky to the crock pot. c_give('jellyjerky'), c_spawn('cookpot'). If you comment out the alias in cooking.lua, you can add it.
  • Like 1



User Feedback


I think it's better to improve IsCookingIngredient function.

Now it looks like: 

local function IsCookingIngredient(prefabname)
	local name = aliases[prefabname] or prefabname
	if ingredients[name] then
		return true
	end
end

And it should look like:

--Will pick something for sure
local function IsCookingIngredient(prefabname)
	local ingredient = aliases[prefabname] and ingredients[aliases[prefabname]] or ingredients[prefabname]
	if ingredient then
		return true
	end
end

 

Share this comment


Link to comment
Share on other sites


×
  • Create New...