1
0
mirror of https://github.com/sys4-fr/server-nalc.git synced 2024-09-30 00:10:33 +02:00

Merged buckets

This commit is contained in:
LeMagnesium 2015-06-09 21:23:22 +02:00
parent 5a3e2ddede
commit 1728194d06

View File

@ -7,10 +7,10 @@ minetest.register_alias("bucket_acid", "bucket:bucket_acid")
minetest.register_alias("bucket_lava", "bucket:bucket_lava") minetest.register_alias("bucket_lava", "bucket:bucket_lava")
minetest.register_craft({ minetest.register_craft({
output = "bucket:bucket_empty 1", output = 'bucket:bucket_empty 1',
recipe = { recipe = {
{"group:ingot", "", "group:ingot"}, {'group:ingot', '', 'group:ingot'},
{"", "group:ingot", ""}, {'', 'group:ingot', ''},
} }
}) })
@ -23,7 +23,7 @@ local function check_protection(pos, name, text)
.. " tried to " .. text .. " tried to " .. text
.. " at protected position " .. " at protected position "
.. minetest.pos_to_string(pos) .. minetest.pos_to_string(pos)
.. " with a bucket.") .. " with a bucket")
minetest.record_protection_violation(pos, name) minetest.record_protection_violation(pos, name)
return true return true
end end
@ -219,7 +219,3 @@ minetest.register_craft({
{"bucket:bucket_water"}, {"bucket:bucket_water"},
}, },
}) })
if minetest.setting_getbool("log_mods") then
minetest.log("action", "Carbone: [bucket] loaded.")
end