plot merging + '* UUID

This commit is contained in:
boy0001 2015-01-06 14:33:37 +11:00
parent f8c543b56c
commit 6b988f616a
6 changed files with 40 additions and 24 deletions

View file

@ -139,7 +139,7 @@ public class Merge extends SubCommand {
PlotId top2 = PlayerFunctions.getTopPlot(world, PlotHelper.getPlot(world, botId)).id;
bot = new PlotId(Math.min(bot1.x, bot2.x), Math.min(bot1.y, bot2.y));
top = new PlotId(Math.min(top1.x, top2.x), Math.min(top1.y, top2.y));
top = new PlotId(Math.max(top1.x, top2.x), Math.max(top1.y, top2.y));
plots = PlayerFunctions.getMaxPlotSelectionIds(world, bot, top);