Made tree planter tool try 10 times to make the tree before giving up.

This commit is contained in:
sk89q 2012-03-01 20:15:39 -08:00
parent 29c1559f70
commit da75d0cef4

View File

@ -44,7 +44,16 @@ public class TreePlanter implements BlockTool {
EditSession editSession = session.createEditSession(player);
try {
if (!gen.generate(editSession, clicked.add(0, 1, 0))) {
boolean successful = false;
for (int i = 0; i < 10; i++) {
if (gen.generate(editSession, clicked.add(0, 1, 0))) {
successful = true;
break;
}
}
if (!successful) {
player.printError("A tree can't go there.");
}
} catch (MaxChangedBlocksException e) {