diff options
author | TenPlus1 <kinsellaja@yahoo.com> | 2016-01-09 13:20:07 +0000 |
---|---|---|
committer | TenPlus1 <kinsellaja@yahoo.com> | 2016-01-09 13:20:07 +0000 |
commit | 8ad092a57c45ead8b1b9be6861a9cf5fc220502b (patch) | |
tree | 536936642d3796b1b1cc6339ad511ed89f0d8455 /mapgen_v7n.lua | |
parent | ad7b63b86971ccae7b1abc008196c9e9553b54ec (diff) |
change fire flower spread rate and texture
Diffstat (limited to 'mapgen_v7n.lua')
-rw-r--r-- | mapgen_v7n.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mapgen_v7n.lua b/mapgen_v7n.lua index ab7f6ea..5033d1f 100644 --- a/mapgen_v7n.lua +++ b/mapgen_v7n.lua @@ -382,7 +382,7 @@ local list = { }
-- wild red and brown mushrooms
-for _, row in ipairs(list) do
+for _, row in pairs(list) do
if row[3] == 1 then
minetest.register_decoration({
@@ -500,7 +500,7 @@ local list = { {"grassy_ocean", ethereal.grassy},
}
-for _, row in ipairs(list) do
+for _, row in pairs(list) do
if row[2] == 1 then
|