Fix side location + fix brushtool mask

This commit is contained in:
boy0001
2015-09-01 10:23:46 +10:00
parent 6671fd7e6d
commit f22874970f
2 changed files with 5 additions and 4 deletions

View File

@ -487,7 +487,7 @@ public class MainUtil {
final int z = bot.getZ();
PlotManager manager = PS.get().getPlotManager(plot.world);
final int y = Math.max(getHeighestBlock(plot.world, x, z), manager.getSignLoc(PS.get().getPlotWorld(plot.world), plot).getY());
return new Location(plot.world, x, y + 1, z);
return new Location(plot.world, x, y + 1, z - 1);
}
public static boolean teleportPlayer(final PlotPlayer player, final Location from, final Plot plot) {