mirror of
https://github.com/TotalFreedomMC/TF-PlotSquared.git
synced 2025-08-08 05:23:01 +00:00
plot merging + '* UUID
This commit is contained in:
parent
f8c543b56c
commit
6b988f616a
6 changed files with 40 additions and 24 deletions
|
@ -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);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue