tweak starting and ending positions for less water

This commit is contained in:
Leijurv 2018-09-25 11:37:45 -07:00
parent b056f18444
commit eb78a1f49b
No known key found for this signature in database
GPG Key ID: 44A3EA646EADAC6A
1 changed files with 2 additions and 2 deletions

View File

@ -31,8 +31,8 @@ import net.minecraft.world.WorldType;
public class BaritoneAutoTest implements AbstractGameEventListener, Helper {
public static final boolean ENABLE_AUTO_TEST = true;
private static final long TEST_SEED = -928872506371745L;
private static final BlockPos STARTING_POSITION = new BlockPos(0, 65, 0);
private static final Goal GOAL = new GoalXZ(100, 0);
private static final BlockPos STARTING_POSITION = new BlockPos(50, 65, 50);
private static final Goal GOAL = new GoalXZ(100, 100);
private static final int MAX_TICKS = 800;
@Override