Skip to content

Commit

Permalink
Version 0.9.17 - Obey DT worldgen config
Browse files Browse the repository at this point in the history
  • Loading branch information
Gaelmare committed Dec 25, 2022
1 parent 55251a4 commit e8108a9
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 7 deletions.
4 changes: 0 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,6 @@ Translations and textures welcome.
LATE BETA, needs help with tree placement and density, as well as TFC specific JoCode library.

## Current issues/todo
* Add TFC Rooty Soil that reverts to correct dirt block on root death
* Passable leaves
* Correct density generation
* Fix lame FPS?
* Fix chopping speed
* Kill cascading worldgen

2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
modGroup=org.labellum.mc
modVersion=0.9.16
modVersion=0.9.17
modBaseName=dynamictreestfc
forgeVersion=1.12.2-14.23.5.2847
mcpVersion=stable_39
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public class DynamicTreesTFC

public static final String MOD_ID = "dynamictreestfc";
public static final String MOD_NAME = "DynamicTreesTFC";
public static final String VERSION = "0.9.16";
public static final String VERSION = "0.9.17";
public static final String DEPENDENCIES
= REQAFTER + TerraFirmaCraft.MOD_ID +
AT + "1.7.3.161" + ORGREATER +
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

import net.dries007.tfc.api.registries.TFCRegistries;
import net.dries007.tfc.api.types.Tree;
import com.ferreusveritas.dynamictrees.api.WorldGenRegistry;
import org.labellum.mc.dynamictreestfc.DTTFCGenerator;
import org.labellum.mc.dynamictreestfc.ModBlocks;
import org.labellum.mc.dynamictreestfc.ModTrees;
Expand All @@ -16,7 +17,8 @@ public void preInit()

public void init()
{
replaceGenerators();
if (WorldGenRegistry.isWorldGenEnabled())
replaceGenerators();
}

private void replaceGenerators()
Expand Down

0 comments on commit e8108a9

Please sign in to comment.