Page 1 of 1

[Solved] Need help

Posted: Sat Jul 29, 2017 10:49 pm
by Kabaril
So i wanted to write a mod for angelsrefining(0.7.23) and youki industries(0.5.71){factorio 0.15.31}
I only wanted to add a few recipes, but got stuck here:

Code: Select all

{
		type = "recipe",
		name = "crystal_production", order="a",
		energy_required = 2.0,
		enabled = "true",
		ingredients = {{name="y-unicomp-a2", amount=30},}, 
		results = {type="fluid", name="crystal-slurry", amount=20},
		subgroup = "y-atomics", 
		category = "yuoki-atomics-recipe",
		icon = "__notfunctioning-mod__/graphics/icons/placeholder.png",
	}
I cant find the error because all factorio says to this is:
error while loading mods: __angelsrefining__/prototypes/override-functions.lua:422:attempt to index local "item" (a string value)

Re: Need help

Posted: Sat Jul 29, 2017 11:57 pm
by Exasperation
Try this:

Code: Select all

results = {{type="fluid", name="crystal-slurry", amount=20}},

Re: [Solved] Need help

Posted: Sun Jul 30, 2017 12:17 am
by Kabaril
thanks for the help it works now :D