Console for every command (we will test what works)

This commit is contained in:
boy0001
2015-07-28 03:50:32 +10:00
parent 3a15254d8d
commit 8344903c50
40 changed files with 40 additions and 40 deletions

View File

@ -78,7 +78,7 @@ public class MainUtil {
public static Location getPlotCenter(Plot plot) {
Location bot = getPlotBottomLoc(plot.world, plot.id);
Location top = getPlotBottomLoc(plot.world, plot.id).add(1, 0, 1);
Location top = getPlotTopLoc(plot.world, plot.id).add(1, 0, 1);
return new Location(plot.world, bot.getX() + (top.getX() - bot.getX()) / 2, 0, bot.getZ() + (top.getZ() - bot.getZ()) / 2);
}