Skip to content

Commit

Permalink
Update Forge for hive gen fix. Reduce default hive gen rate to normal
Browse files Browse the repository at this point in the history
  • Loading branch information
mezz committed May 7, 2016
1 parent ad42e73 commit 54c5ed7
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
@@ -1,5 +1,5 @@
mcversion=1.9
forgeversion=12.16.1.1891
forgeversion=12.16.1.1892
mcp_mappings=snapshot_20160506

jei_version=3.3.3.+
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/forestry/Forestry.java
Expand Up @@ -49,7 +49,7 @@
name = Constants.MOD_ID,
version = Constants.VERSION,
guiFactory = "forestry.core.config.ForestryGuiConfigFactory",
dependencies = "required-after:Forge@[11.15.1.1808,);"
dependencies = "required-after:Forge@[12.16.1.1892,);"
+ "after:Buildcraft|Core@[7.2,);"
+ "after:BuildCraft|Energy@[7.2,);"
+ "after:ExtrabiomesXL;"
Expand Down
Expand Up @@ -62,7 +62,7 @@ public static void decorateHives(World world, Random rand, int chunkX, int chunk

BlockPos pos = new BlockPos(x, 0, z);
if (!world.isBlockLoaded(pos)) {
Log.error("tried to generated a hive in an unloaded area.");
Log.error("tried to generate a hive in an unloaded area.");
return;
}
BiomeGenBase biome = world.getBiomeGenForCoords(pos);
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/forestry/core/config/Config.java
Expand Up @@ -66,9 +66,9 @@ public class Config {
public static boolean generateApatiteOre = true;
public static boolean generateCopperOre = true;
public static boolean generateTinOre = true;
private static float generateBeehivesAmount = 1.5f;
private static float generateBeehivesAmount = 1.0f;
public static boolean generateBeehivesDebug = false;
public static boolean logHivePlacement = true;
public static boolean logHivePlacement = false;
public static boolean enableVillagers = true;

// Retrogen
Expand Down

0 comments on commit 54c5ed7

Please sign in to comment.