davisonio / craig-server_game

Game used by Craig's Minetest Server
9 stars 15 forks source link

obsidian #3

Closed RHRhino closed 10 years ago

RHRhino commented 10 years ago

How about changing the obsidian behavior? Currently you need many buckets if you want to remove a lot of lava cave. (bucket_lava --> 5 obsidian) This could work too: bucket_lava --> 1 obsidian + bucket

minetest.register_craft({
    output = "default:obsidian",
    recipe = {
    {"bucket:bucket_lava"},
    },
    replacements = {
    {"bucket:bucket_lava", "bucket:bucket_empty"}
    },
})
davisonio commented 10 years ago

I tried doing a recipe similar to that, but unfortunately it did not seem to work for me, I'll try again.