Concrete Recipe Ore to Stick

by Lekgolo

Changes the recipe of concrete to require 2 iron sticks (1 iron plate = 2 sticks) instead of iron ore. That's all.

Tweaks
11 months ago
1.1
358

b The mod overrides a lot of recipes with their default

1 year, 4 months ago

Please only change the concrete recipe. Currently it also chances back a lot of other recipes back to their original.

Remove all other recipes from recipes.lua:
data:extend({
{
type = "recipe",
name = "concrete",
energy_required = 10,
enabled = false,
category = "crafting-with-fluid",
ingredients =
{
{"stone-brick", 5},
{"iron-stick", 2},
{type="fluid", name="water", amount=100}
},
result= "concrete",
result_count = 10
}
})

11 months ago

Thanks! I've been gone for a while but just now updated it as such.

This thread has been locked.