mirror of
https://github.com/sys4-fr/server-nalc.git
synced 2024-11-05 10:00:26 +01:00
[_misc] Fix infinite wool craft
- See https://www.youtube.com/watch?v=hhAq9mHZprk
This commit is contained in:
parent
8d0b1215ea
commit
1e83c2a28f
|
@ -1,118 +1,118 @@
|
|||
-- récupéré les "cotton" des "wool" faite (récupère 3 aulieu de 4 et perte du colorant)
|
||||
minetest.register_craft({
|
||||
output = "farming:cotton 9",
|
||||
output = "farming:cotton 4",
|
||||
recipe = {
|
||||
{"wool:black"},
|
||||
},
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "farming:cotton 9",
|
||||
output = "farming:cotton 4",
|
||||
recipe = {
|
||||
{"wool:white"},
|
||||
},
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "farming:cotton 9",
|
||||
output = "farming:cotton 4",
|
||||
recipe = {
|
||||
{"wool:grey"},
|
||||
},
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "farming:cotton 9",
|
||||
output = "farming:cotton 4",
|
||||
recipe = {
|
||||
{"wool:dark_grey"},
|
||||
},
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "farming:cotton 9",
|
||||
output = "farming:cotton 4",
|
||||
recipe = {
|
||||
{"wool:blue"},
|
||||
},
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "farming:cotton 9",
|
||||
output = "farming:cotton 4",
|
||||
recipe = {
|
||||
{"wool:brown"},
|
||||
},
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "farming:cotton 9",
|
||||
output = "farming:cotton 4",
|
||||
recipe = {
|
||||
{"wool:cyan"},
|
||||
},
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "farming:cotton 9",
|
||||
output = "farming:cotton 4",
|
||||
recipe = {
|
||||
{"wool:green"},
|
||||
},
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "farming:cotton 9",
|
||||
output = "farming:cotton 4",
|
||||
recipe = {
|
||||
{"wool:dark_green"},
|
||||
},
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "farming:cotton 9",
|
||||
output = "farming:cotton 4",
|
||||
recipe = {
|
||||
{"wool:dark_grey"},
|
||||
},
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "farming:cotton 9",
|
||||
output = "farming:cotton 4",
|
||||
recipe = {
|
||||
{"wool:dark_grey"},
|
||||
},
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "farming:cotton 9",
|
||||
output = "farming:cotton 4",
|
||||
recipe = {
|
||||
{"wool:magenta"},
|
||||
},
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "farming:cotton 9",
|
||||
output = "farming:cotton 4",
|
||||
recipe = {
|
||||
{"wool:orange"},
|
||||
},
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "farming:cotton 9",
|
||||
output = "farming:cotton 4",
|
||||
recipe = {
|
||||
{"wool:pink"},
|
||||
},
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "farming:cotton 9",
|
||||
output = "farming:cotton 4",
|
||||
recipe = {
|
||||
{"wool:red"},
|
||||
},
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "farming:cotton 9",
|
||||
output = "farming:cotton 4",
|
||||
recipe = {
|
||||
{"wool:violet"},
|
||||
},
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "farming:cotton 9",
|
||||
output = "farming:cotton 4",
|
||||
recipe = {
|
||||
{"wool:yellow"},
|
||||
},
|
||||
|
|
Loading…
Reference in New Issue
Block a user