fix nyancat lucky block

This commit is contained in:
TenPlus1 2018-04-20 12:57:07 +01:00
parent 32f7a6d3bc
commit 429683f017
1 changed files with 6 additions and 2 deletions

View File

@ -14,8 +14,12 @@ if minetest.get_modpath("lucky_block") then
{"spw", "mobs:cow", 5},
{"dro", {"mobs:bucket_milk"}, 8},
{"spw", "mobs:kitten", 2},
{"tro", "default:nyancat", "mobs_kitten", true},
{"exp"},
})
if minetest.registered_nodes["default:nyancat"] then
lucky_block:add_blocks({
{"tro", "default:nyancat", "mobs_kitten", true},
})
end
end