forked from minetest/minetest_game
Decrease the cost of gunpowder for trails
The cost of TNT remains the same
This commit is contained in:
parent
3c9d0893ee
commit
f07c4dcd83
|
@ -498,7 +498,7 @@ minetest.register_node("tnt:gunpowder_burning", {
|
|||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "tnt:gunpowder",
|
||||
output = "tnt:gunpowder 5",
|
||||
type = "shapeless",
|
||||
recipe = {"default:coal_lump", "default:gravel"}
|
||||
})
|
||||
|
@ -507,9 +507,9 @@ if enable_tnt then
|
|||
minetest.register_craft({
|
||||
output = "tnt:tnt",
|
||||
recipe = {
|
||||
{"", "group:wood", ""},
|
||||
{"group:wood", "tnt:gunpowder", "group:wood"},
|
||||
{"", "group:wood", ""}
|
||||
{"group:wood", "tnt:gunpowder", "group:wood"},
|
||||
{"tnt:gunpowder", "tnt:gunpowder", "tnt:gunpowder"},
|
||||
{"group:wood", "tnt:gunpowder", "group:wood"}
|
||||
}
|
||||
})
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user