mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2024-11-22 13:16:45 +01:00
Fix wrong sign height
This commit is contained in:
parent
d4614007ae
commit
097159d606
@ -54,7 +54,7 @@ public class HybridPlotWorld extends ClassicPlotWorld {
|
|||||||
Location bot = plot.getBottomAbs();
|
Location bot = plot.getBottomAbs();
|
||||||
if (SIGN_LOCATION == null) {
|
if (SIGN_LOCATION == null) {
|
||||||
bot.setY(ROAD_HEIGHT + 1);
|
bot.setY(ROAD_HEIGHT + 1);
|
||||||
return bot.add(-1, 1, -2);
|
return bot.add(-1, 0, -2);
|
||||||
} else {
|
} else {
|
||||||
bot.setY(0);
|
bot.setY(0);
|
||||||
Location loc = bot.add(SIGN_LOCATION.getX(), SIGN_LOCATION.getY(), SIGN_LOCATION.getZ());
|
Location loc = bot.add(SIGN_LOCATION.getX(), SIGN_LOCATION.getY(), SIGN_LOCATION.getZ());
|
||||||
|
Loading…
Reference in New Issue
Block a user