From 600781cb18ca2a3a75feb14c694f21c7cb208107 Mon Sep 17 00:00:00 2001 From: Matt Caughey Date: Sat, 28 Sep 2013 07:25:23 -0400 Subject: [PATCH] Fixed massive tree trunks again --- common/biomesoplenty/worldgen/tree/WorldGenMassiveTree.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/biomesoplenty/worldgen/tree/WorldGenMassiveTree.java b/common/biomesoplenty/worldgen/tree/WorldGenMassiveTree.java index f7636b2cd..67da54958 100644 --- a/common/biomesoplenty/worldgen/tree/WorldGenMassiveTree.java +++ b/common/biomesoplenty/worldgen/tree/WorldGenMassiveTree.java @@ -345,7 +345,7 @@ public class WorldGenMassiveTree extends WorldGenerator for (int j = -2; j < 3; j++ ) { - if ((i != -2 && j != -2) || (i != -2 && j != 2) || (i != 2 && j != -2) || (i != 2 && j != 2)) + if (!(i == -2 && j == -2) && !(i == -2 && j == 2) && !(i == 2 && j == -2) && !(i == 2 && j == 2)) { var5[2] = var4 + j; var6[2] = var4 + j;