[Bleeding] Added support for all TreeType entries to CraftWorld.generateTree(). Addresses BUKKIT-1161

This commit is contained in:
zml2008
2012-03-13 19:38:39 -07:00
committed by EvilSeph
parent 27acb4c41e
commit 8aee4c3f56
9 changed files with 71 additions and 23 deletions

View File

@@ -4,7 +4,7 @@ import java.util.Random;
import org.bukkit.BlockChangeDelegate; // CraftBukkit
public class WorldGenGroundBush extends WorldGenerator {
public class WorldGenGroundBush extends WorldGenerator implements BlockSapling.TreeGenerator { // CraftBukkit - add interface
private int a;
private int b;
@@ -49,8 +49,11 @@ public class WorldGenGroundBush extends WorldGenerator {
}
}
}
// CraftBukkit start - return false if gen was unsuccessful
} else {
return false;
}
// CraftBukkit end
return true;
}
}