fix evil stick recipe to account for glooptest vs. gloopores
This commit is contained in:
parent
2b90ff9185
commit
170f7b29f5
52
crafts.lua
52
crafts.lua
@ -55,26 +55,40 @@ minetest.register_craft({
|
||||
},
|
||||
})
|
||||
|
||||
if minetest.get_modpath("glooptest") or minetest.get_modpath("gloopores") then
|
||||
minetest.register_craft({
|
||||
type = "shapeless",
|
||||
output = "gloopblocks:evil_stick",
|
||||
recipe = {
|
||||
"gloopores:kalite_lump",
|
||||
"default:coal_lump",
|
||||
"default:stick"
|
||||
}
|
||||
})
|
||||
|
||||
if minetest.get_modpath("glooptest") then
|
||||
|
||||
minetest.register_craft({
|
||||
type = "shapeless",
|
||||
output = "gloopblocks:evil_stick",
|
||||
recipe = {
|
||||
"glooptest:kalite_lump",
|
||||
"default:coal_lump",
|
||||
"default:stick"
|
||||
}
|
||||
})
|
||||
|
||||
elseif minetest.get_modpath("gloopores") then
|
||||
|
||||
minetest.register_craft({
|
||||
type = "shapeless",
|
||||
output = "gloopblocks:evil_stick",
|
||||
recipe = {
|
||||
"gloopores:kalite_lump",
|
||||
"default:coal_lump",
|
||||
"default:stick"
|
||||
}
|
||||
})
|
||||
else
|
||||
minetest.register_craft({
|
||||
type = "shapeless",
|
||||
output = "gloopblocks:evil_stick",
|
||||
recipe = {
|
||||
"default:gold_ingot",
|
||||
"default:coal_lump",
|
||||
"default:stick"
|
||||
}
|
||||
})
|
||||
minetest.register_craft({
|
||||
type = "shapeless",
|
||||
output = "gloopblocks:evil_stick",
|
||||
recipe = {
|
||||
"default:gold_ingot",
|
||||
"default:coal_lump",
|
||||
"default:stick"
|
||||
}
|
||||
})
|
||||
end
|
||||
|
||||
minetest.register_craft({
|
||||
|
Loading…
x
Reference in New Issue
Block a user