Added a craft for super lucky block

master
Solebull 2019-01-02 00:39:39 +01:00
parent 0836f04ba1
commit 24c8f560b0
2 changed files with 10 additions and 0 deletions

View File

@ -234,6 +234,8 @@ It's really fast. May be used on a website, to show the actual map.
*We can't open doors when created by another player*
- [X] First, try to remove "Own by [playername]" message
Ok, bt it doesn't remove existing meta
- [X] Added a craft for super lucly block
?? is this working
- [ ] Then, remove protection. Other players should be able to open doors
Works in local multiplayer test. Should be tested with another players
Maybe removing the owner meta is enough to remove protection

View File

@ -678,6 +678,14 @@ minetest.register_craft({
}
})
minetest.register_craft({
output = "lucky_block:super_lucky_block",
recipe = {
{"default:gold_ingot", "default:gold_ingot", "default:gold_ingot"},
{"default:gold_ingot", "default:chest_locked", "default:gold_ingot"},
{"default:gold_ingot", "default:gold_ingot", "default:gold_ingot"}
}
})
-- super lucky block
minetest.register_node('lucky_block:super_lucky_block', {