Fixing derps
This commit is contained in:
parent
067f6f5cac
commit
2767a81227
2 changed files with 2 additions and 2 deletions
|
@ -25,7 +25,7 @@ import cpw.mods.fml.relauncher.ReflectionHelper;
|
||||||
public class DecorateBiomeEventHandler
|
public class DecorateBiomeEventHandler
|
||||||
{
|
{
|
||||||
@SubscribeEvent
|
@SubscribeEvent
|
||||||
public void onBiomeDecorate(DecorateBiomeEvent.Pre event)
|
public void onBiomeDecorate(DecorateBiomeEvent.Post event)
|
||||||
{
|
{
|
||||||
World world = event.world;
|
World world = event.world;
|
||||||
|
|
||||||
|
|
|
@ -128,7 +128,7 @@ public class WorldGenRedwoodTree2 extends WorldGenAbstractTree
|
||||||
{
|
{
|
||||||
for (int ix = -2; ix <= 2; ix++)
|
for (int ix = -2; ix <= 2; ix++)
|
||||||
{
|
{
|
||||||
for (int iz = -2; iz <= 3; iz++)
|
for (int iz = -2; iz <= 2; iz++)
|
||||||
{
|
{
|
||||||
if (((ix != -2 && ix != 2) || (iz == 0)) && ((iz != -2 && iz != 2) || (ix == 0)))
|
if (((ix != -2 && ix != 2) || (iz == 0)) && ((iz != -2 && iz != 2) || (ix == 0)))
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue