mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2025-06-25 02:04:44 +02:00
Fix wrong sign height
This commit is contained in:
@ -54,7 +54,7 @@ public class HybridPlotWorld extends ClassicPlotWorld {
|
||||
Location bot = plot.getBottomAbs();
|
||||
if (SIGN_LOCATION == null) {
|
||||
bot.setY(ROAD_HEIGHT + 1);
|
||||
return bot.add(-1, 1, -2);
|
||||
return bot.add(-1, 0, -2);
|
||||
} else {
|
||||
bot.setY(0);
|
||||
Location loc = bot.add(SIGN_LOCATION.getX(), SIGN_LOCATION.getY(), SIGN_LOCATION.getZ());
|
||||
|
Reference in New Issue
Block a user