Fix wrong sign height

This commit is contained in:
Jesse Boyd 2017-10-23 18:23:37 +11:00
parent d4614007ae
commit 097159d606
No known key found for this signature in database
GPG Key ID: 59F1DE6293AF6E1F

View File

@ -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());