Skip to content

Commit

Permalink
Fixed crash with EB Polar Desert.
Browse files Browse the repository at this point in the history
  • Loading branch information
whichonespink44 committed May 20, 2016
1 parent 0d414bc commit 434f812
Showing 1 changed file with 0 additions and 23 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,6 @@
import net.minecraft.world.biome.BiomeGenBase;
import rtg.api.biome.BiomeConfig;
import rtg.world.biome.deco.DecoBoulder;
import rtg.world.biome.deco.DecoTree;
import rtg.world.biome.deco.DecoTree.TreeCondition;
import rtg.world.biome.deco.DecoTree.TreeType;
import rtg.world.gen.surface.enhancedbiomes.SurfaceEBPolarDesert;
import rtg.world.gen.terrain.enhancedbiomes.TerrainEBPolarDesert;
import enhancedbiomes.api.EBAPI;
Expand Down Expand Up @@ -83,25 +80,5 @@ public RealisticBiomeEBPolarDesert(BiomeGenBase ebBiome, BiomeConfig config)
decoBoulder.chance = 16;
decoBoulder.maxY = 64;
this.addDeco(decoBoulder);

DecoTree ebTrees = new DecoTree();
ebTrees.checkRiver = true;
ebTrees.minRiver = 0.86f;
ebTrees.logBlock = Blocks.log;
ebTrees.logMeta = (byte)1;
ebTrees.leavesBlock = Blocks.leaves;
ebTrees.leavesMeta = (byte)1;
ebTrees.minTrunkSize = 2;
ebTrees.maxTrunkSize = 7;
ebTrees.minCrownSize = 6;
ebTrees.maxCrownSize = 17;
ebTrees.treeType = TreeType.RTG_TREE;
ebTrees.distribution.noiseDivisor = 80f;
ebTrees.distribution.noiseFactor = 60f;
ebTrees.distribution.noiseAddend = -15f;
ebTrees.treeCondition = TreeCondition.RANDOM_CHANCE;
ebTrees.treeConditionChance = 8;
ebTrees.maxY = 120;
this.addDeco(ebTrees);
}
}

0 comments on commit 434f812

Please sign in to comment.