mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2025-06-28 19:54:43 +02:00
Fix side location + fix brushtool mask
This commit is contained in:
@ -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) {
|
||||
|
Reference in New Issue
Block a user