From c8313d6cd94b5217dc57834c10a5e1a9e3ea3ad9 Mon Sep 17 00:00:00 2001 From: boy0001 Date: Mon, 15 Dec 2014 23:40:31 +1100 Subject: [PATCH] [UNTESTED] Plot change owner --- .../plot/commands/SetOwner.java | 30 ++++++++++++++----- 1 file changed, 23 insertions(+), 7 deletions(-) diff --git a/PlotSquared/src/main/java/com/intellectualcrafters/plot/commands/SetOwner.java b/PlotSquared/src/main/java/com/intellectualcrafters/plot/commands/SetOwner.java index ff2adc280..31e94eea9 100644 --- a/PlotSquared/src/main/java/com/intellectualcrafters/plot/commands/SetOwner.java +++ b/PlotSquared/src/main/java/com/intellectualcrafters/plot/commands/SetOwner.java @@ -25,10 +25,15 @@ import com.intellectualcrafters.plot.PlotMain; import com.intellectualcrafters.plot.config.C; import com.intellectualcrafters.plot.database.DBFunc; import com.intellectualcrafters.plot.object.Plot; +import com.intellectualcrafters.plot.object.PlotId; import com.intellectualcrafters.plot.util.PlayerFunctions; +import com.intellectualcrafters.plot.util.PlotHelper; import com.intellectualcrafters.plot.util.UUIDHandler; + +import org.bukkit.World; import org.bukkit.entity.Player; +import java.util.ArrayList; import java.util.UUID; @SuppressWarnings("deprecation") @@ -59,14 +64,25 @@ public class SetOwner extends SubCommand { PlayerFunctions.sendMessage(plr, C.NEED_USER); return true; } - plot.owner = getUUID(args[0]); - PlotMain.updatePlot(plot); - DBFunc.setOwner(plot, plot.owner); - PlayerFunctions.sendMessage(plr, C.SET_OWNER); - - if (PlotMain.worldGuardListener != null) { - PlotMain.worldGuardListener.changeOwner(plr, plot.owner, plr.getWorld(), plot); + + World world = plr.getWorld(); + PlotId bot = PlayerFunctions.getBottomPlot(world, plot).id; + PlotId top = PlayerFunctions.getTopPlot(world, plot).id; + + ArrayList plots = PlayerFunctions.getPlotSelectionIds(world, bot, top); + + for (PlotId id : plots) { + Plot current = PlotMain.getPlots(world).get(id); + current.owner = getUUID(args[0]); + PlotMain.updatePlot(current); + DBFunc.setOwner(current, current.owner); + + if (PlotMain.worldGuardListener != null) { + PlotMain.worldGuardListener.changeOwner(plr, current.owner, plr.getWorld(), current); + } } + + PlayerFunctions.sendMessage(plr, C.SET_OWNER); return true; }