summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVanessa Ezekowitz <vanessaezekowitz@gmail.com>2015-08-21 15:29:45 -0400
committerVanessa Ezekowitz <vanessaezekowitz@gmail.com>2015-08-21 15:31:05 -0400
commit8e0eeb5747ebe204ea71f1026d5fc2e5c8e0fc58 (patch)
tree821f7e89077bfb1a918f08bc022e489d5700806b
parentfa3c3c60040b8ccdc5e0b5ab0f63d21a3b4422f9 (diff)
fix sapling growth
(biome_lib requires "foo.bar" when using "quoted string" function calls)
-rw-r--r--saplings.lua16
1 files changed, 8 insertions, 8 deletions
diff --git a/saplings.lua b/saplings.lua
index 2b40b75..8004612 100644
--- a/saplings.lua
+++ b/saplings.lua
@@ -32,7 +32,7 @@ biome_lib:grow_plants({
grow_chance = moretrees.sapling_chance,
grow_plant = "moretrees:birch_sapling",
grow_nodes = moretrees.birch_biome.surface,
- grow_function = "moretrees:grow_birch"
+ grow_function = "moretrees.grow_birch"
})
biome_lib:grow_plants({
@@ -40,7 +40,7 @@ biome_lib:grow_plants({
grow_chance = 30,
grow_plant = "moretrees:birch_sapling_ongen",
grow_nodes = moretrees.birch_biome.surface,
- grow_function = "moretrees:grow_birch"
+ grow_function = "moretrees.grow_birch"
})
biome_lib:grow_plants({
@@ -48,7 +48,7 @@ biome_lib:grow_plants({
grow_chance = moretrees.sapling_chance,
grow_plant = "moretrees:spruce_sapling",
grow_nodes = moretrees.spruce_biome.surface,
- grow_function = "moretrees:grow_spruce"
+ grow_function = "moretrees.grow_spruce"
})
biome_lib:grow_plants({
@@ -56,7 +56,7 @@ biome_lib:grow_plants({
grow_chance = 30,
grow_plant = "moretrees:spruce_sapling_ongen",
grow_nodes = moretrees.spruce_biome.surface,
- grow_function = "moretrees:grow_spruce"
+ grow_function = "moretrees.grow_spruce"
})
biome_lib:grow_plants({
@@ -64,7 +64,7 @@ biome_lib:grow_plants({
grow_chance = moretrees.sapling_chance,
grow_plant = "moretrees:fir_sapling",
grow_nodes = moretrees.fir_biome.surface,
- grow_function = "moretrees:grow_fir"
+ grow_function = "moretrees.grow_fir"
})
biome_lib:grow_plants({
@@ -72,7 +72,7 @@ biome_lib:grow_plants({
grow_chance = 30,
grow_plant = "moretrees:fir_sapling_ongen",
grow_nodes = moretrees.fir_biome.surface,
- grow_function = "moretrees:grow_fir"
+ grow_function = "moretrees.grow_fir"
})
biome_lib:grow_plants({
@@ -80,7 +80,7 @@ biome_lib:grow_plants({
grow_chance = moretrees.sapling_chance,
grow_plant = "default:junglesapling",
grow_nodes = moretrees.jungletree_biome.surface,
- grow_function = "moretrees:grow_jungletree"
+ grow_function = "moretrees.grow_jungletree"
})
biome_lib:grow_plants({
@@ -88,6 +88,6 @@ biome_lib:grow_plants({
grow_chance = 30,
grow_plant = "moretrees:jungletree_sapling_ongen",
grow_nodes = moretrees.jungletree_biome.surface,
- grow_function = "moretrees:grow_jungletree"
+ grow_function = "moretrees.grow_jungletree"
})