Sort loot registration into respective mods (#2602)

This commit is contained in:
An0n3m0us 2020-02-23 13:41:13 +00:00 committed by GitHub
parent 34b410319e
commit 8d9aa07752
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
9 changed files with 44 additions and 16 deletions

View file

@ -228,3 +228,10 @@ minetest.register_craft({
recipe = "vessels:shelf",
burntime = 30,
})
-- Register glass fragments as dungeon loot
if minetest.global_exists("dungeon_loot") then
dungeon_loot.register({
name = "vessels:glass_fragments", chance = 0.35, count = {1, 4}
})
end