mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2024-11-22 05:06:44 +01:00
actually fixed it
This commit is contained in:
parent
b5037fe878
commit
1772002700
@ -751,9 +751,7 @@ public class PlotHelper {
|
|||||||
public static Location getPlotHome(World w, PlotId plotid) {
|
public static Location getPlotHome(World w, PlotId plotid) {
|
||||||
PlotMain.getWorldSettings(w);
|
PlotMain.getWorldSettings(w);
|
||||||
if (getPlot(w, plotid).settings.getPosition() == PlotHomePosition.DEFAULT) {
|
if (getPlot(w, plotid).settings.getPosition() == PlotHomePosition.DEFAULT) {
|
||||||
int x =
|
int x = getPlotBottomLoc(w, plotid).getBlockX() + (getPlotTopLoc(w, plotid).getBlockX() - getPlotBottomLoc(w, plotid).getBlockX());
|
||||||
getPlotBottomLoc(w, plotid).getBlockX()
|
|
||||||
+ (getPlotTopLoc(w, plotid).getBlockX() - getPlotBottomLoc(w, plotid).getBlockX());
|
|
||||||
int z = getPlotBottomLoc(w, plotid).getBlockZ() - 2;
|
int z = getPlotBottomLoc(w, plotid).getBlockZ() - 2;
|
||||||
int y = w.getHighestBlockYAt(x, z);
|
int y = w.getHighestBlockYAt(x, z);
|
||||||
return new Location(w, x, y + 2, z);
|
return new Location(w, x, y + 2, z);
|
||||||
@ -768,7 +766,7 @@ public class PlotHelper {
|
|||||||
int x = top.getBlockX() - bot.getBlockX();
|
int x = top.getBlockX() - bot.getBlockX();
|
||||||
int z = top.getBlockZ() - bot.getBlockZ();
|
int z = top.getBlockZ() - bot.getBlockZ();
|
||||||
int y = w.getHighestBlockYAt(x, z);
|
int y = w.getHighestBlockYAt(x, z);
|
||||||
return new Location(w, x, y + 2, z);
|
return new Location(w, bot.getBlockX() + x/2, y + 2, bot.getBlockZ() + z/2);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user