Extra error checking: global variables

This commit is contained in:
Duane 2016-07-15 04:18:54 -05:00
parent bf26b8bee1
commit 1648bc459f
17 changed files with 362 additions and 323 deletions

View file

@ -36,7 +36,7 @@ minetest.register_node("fun_caves:dragon_eye", {
})
fun_caves.plantlist = {
plantlist = {
{name="staghorn_coral",
desc="Staghorn Coral",
water=true,
@ -85,7 +85,7 @@ fun_caves.plantlist = {
}
for _, plant in ipairs(fun_caves.plantlist) do
for _, plant in ipairs(plantlist) do
if plant.coral then
groups = {cracky=3, stone=1, attached_node=1}
else