Fixed a basic issue

master
Ginger88895 2014-01-28 08:38:17 -05:00
parent 1d3290cbe1
commit 118aea7a05
1 changed files with 3 additions and 3 deletions

View File

@ -428,7 +428,7 @@ minetest.register_abm({
interval = 2,
chance = 10,
action = function(pos, node)
if node.name == "tnt:tnt1" then
if node.name == "bettertnt:tnt1" then
boom({x=pos.x, y=pos.y, z=pos.z}, 0)
else
burn(pos)
@ -437,9 +437,9 @@ minetest.register_abm({
})
minetest.register_craft({
output = "tnt:gunpowder",
output = "bettertnt:gunpowder",
type = "shapeless",
recipe = {"default:coal_lump", "default:gravel"}
recipe = {"default:coal_lump", "default:gravel", "default:coal_lump"}
})