-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
commit 0a61781 Author: FaceDeer <[email protected]> Date: Mon Aug 1 14:50:07 2022 -0600 add an additional check to ensure old timers don't cause inappropriate growth commit 1d7b601 Author: FaceDeer <[email protected]> Date: Mon Aug 1 13:21:29 2022 -0600 stop timers when seeds are picked up commit c8fa25c Author: FaceDeer <[email protected]> Date: Mon Aug 1 13:05:24 2022 -0600 fix replacements for dwarven syrup taffy recipe commit 4de45bb Author: FaceDeer <[email protected]> Date: Mon Aug 1 11:09:48 2022 -0600 account for some additional mod dependencies commit 83ea06b Author: FaceDeer <[email protected]> Date: Mon Aug 1 11:09:14 2022 -0600 update cooking recipes to be more specific. commit 302da3e Author: FaceDeer <[email protected]> Date: Fri Jul 29 17:12:59 2022 -0600 add location logging for debugging purposes commit 11667e1 Author: FaceDeer <[email protected]> Date: Sun Jul 24 16:54:21 2022 -0600 add checks for submods being present the df_trees and df_farming checks are likely redundant, but if primordial layers are disabled someone might not have df_primordial_items installed. commit 5906308 Author: FaceDeer <[email protected]> Date: Sun Jul 24 16:49:23 2022 -0600 add config settings for biome restrictions, vastly reduce copy and paste in code commit e52820c Author: FaceDeer <[email protected]> Date: Sat Jul 23 20:45:26 2022 -0600 add initial stab at growing conditions - biome restrictions for trees commit 7b99556 Author: FaceDeer <[email protected]> Date: Sat Jul 23 12:08:41 2022 -0600 adding biome API. Not yet tested. commit bf82b3b Author: FaceDeer <[email protected]> Date: Fri Jul 22 21:22:37 2022 -0600 added stubs for growth permission for farming plants commit 46765df Author: FaceDeer <[email protected]> Date: Fri Jul 22 18:36:45 2022 -0600 initial work for restricted plant growth. split out growth conditions for trees, and reworked torchspine to not use ABMs while I was at it.
- Loading branch information
Showing
58 changed files
with
721 additions
and
340 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
local add_biome_restrictions = function(root_table, function_name, biome_set) | ||
local old_function = root_table[function_name] | ||
root_table[function_name] = function(pos) | ||
local biome = df_caverns.get_biome(pos) | ||
return old_function(pos) and biome_set[biome] | ||
end | ||
end | ||
|
||
if df_caverns.config.restrict_trees_to_biomes then | ||
|
||
if minetest.get_modpath("df_trees") then | ||
add_biome_restrictions(df_trees, "black_cap_growth_permitted", {blackcap = true}) | ||
add_biome_restrictions(df_trees, "blood_thorn_growth_permitted", {bloodthorn = true}) | ||
add_biome_restrictions(df_trees, "fungiwood_growth_permitted", {fungiwood = true, fungispore = true}) | ||
add_biome_restrictions(df_trees, "goblin_cap_growth_permitted", {goblincap = true, towergoblin = true}) | ||
add_biome_restrictions(df_trees, "nether_cap_growth_permitted", {nethercap = true}) | ||
add_biome_restrictions(df_trees, "spore_tree_growth_permitted", {sporetree = true, fungispore = true}) | ||
add_biome_restrictions(df_trees, "tower_cap_growth_permitted", {towercap = true, towergoblin = true}) | ||
add_biome_restrictions(df_trees, "tunnel_tube_growth_permitted", {tunneltube = true}) | ||
-- Deliberately not biome-restricted | ||
--add_biome_restrictions(df_trees, "torchspine_growth_permitted", {}) | ||
--add_biome_restrictions(df_trees, "spindlestem_growth_permitted", {}) | ||
end | ||
|
||
if minetest.get_modpath("df_primordial_items") then | ||
add_biome_restrictions(df_primordial_items, "primordial_mushroom_growth_permitted", {["primordial fungus"] = true}) | ||
add_biome_restrictions(df_primordial_items, "giant_mycelium_growth_permitted", {["primordial fungus"] = true}) | ||
add_biome_restrictions(df_primordial_items, "giant_fern_growth_permitted", {["primordial jungle"] = true}) | ||
add_biome_restrictions(df_primordial_items, "jungle_mushroom_growth_permitted", {["primordial jungle"] = true}) | ||
add_biome_restrictions(df_primordial_items, "jungletree_growth_permitted", {["primordial jungle"] = true}) | ||
end | ||
|
||
end | ||
|
||
if df_caverns.config.restrict_farmables_to_biomes and minetest.get_modpath("df_farming") then | ||
add_biome_restrictions(df_farming.growth_permitted, "df_farming:cave_wheat_seed", | ||
{fungiwood = true, tunneltube = true, sporetree = true, fungispore = true}) | ||
add_biome_restrictions(df_farming.growth_permitted, "df_farming:dimple_cup_seed", | ||
{towergoblin = true}) | ||
add_biome_restrictions(df_farming.growth_permitted, "df_farming:pig_tail_seed", | ||
{sporetree = true, fungispore = true}) | ||
add_biome_restrictions(df_farming.growth_permitted, "df_farming:quarry_bush_seed", | ||
{bloodthorn = true}) | ||
add_biome_restrictions(df_farming.growth_permitted, "df_farming:sweet_pod_seed", | ||
{tunneltube = true, fungispore = true}) | ||
add_biome_restrictions(df_farming.growth_permitted, "df_farming:plump_helmet_spawn", | ||
{fungiwood = true, towercap = true, goblincap = true, towergoblin = true}) | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.