Removed sulfur again, new tnt recipe

master
DanDuncombe 2013-11-01 19:51:36 +00:00 committed by Vanessa Ezekowitz
parent 6160394718
commit a3a50dc0e0
2 changed files with 1 additions and 11 deletions

View File

@ -12,14 +12,4 @@ minetest.register_ore({
height_max = 0,
})
minetest.register_abm({
nodenames = {"default:stone"},
neighbours = {"default:lava_source"},
interval = 10,
chance = 100,
action = function(pos, node)
minetest.add_node(pos, {name="ores:sulfur"})
end
})
dofile(minetest.get_modpath("ores").."/registration.lua")

View File

@ -233,7 +233,7 @@ minetest.register_craft({
output = "tnt:tnt",
recipe = {
{"trees:birch_plank","minerals:saltpeter","trees:birch_plank"},
{"trees:birch_plank","minerals:sulfur","trees:birch_plank"},
{"trees:birch_plank","minerals:charcoal","trees:birch_plank"},
{"trees:birch_plank","minerals:saltpeter","trees:birch_plank"},
}
})