From 2596f4d6f94b533e3c8435df401dc24b1833ef8b Mon Sep 17 00:00:00 2001 From: LNJ Date: Fri, 3 Jun 2016 23:32:15 +0200 Subject: [PATCH] Fix that only eggs are in chests in ruins --- mods/ruins/init.lua | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/mods/ruins/init.lua b/mods/ruins/init.lua index bc8e233..6ddb6bb 100644 --- a/mods/ruins/init.lua +++ b/mods/ruins/init.lua @@ -30,10 +30,7 @@ local chest_stuff = { } if core.get_modpath("chicken") then - chest_stuff = { - unpack(chest_stuff), - {name = "creatures:egg", max = 6, rarity = 2}, - } + table.insert(chest_stuff, {name = "creatures:egg", max = 6, rarity = 2}) end minetest.register_node("ruins:chest", {