Merge remote-tracking branch 'origin/master'

This commit is contained in:
MattBDev 2016-06-22 23:10:15 -04:00
commit 532fd09800
2 changed files with 7 additions and 3 deletions

View File

@ -11,7 +11,6 @@ import com.intellectualcrafters.plot.util.UUIDHandler;
import com.intellectualcrafters.plot.util.WorldUtil;
import com.plotsquared.general.commands.Argument;
import com.plotsquared.general.commands.CommandDeclaration;
import java.util.HashSet;
import java.util.Set;
import java.util.UUID;
@ -48,7 +47,12 @@ public class Kick extends SubCommand {
Set<PlotPlayer> players = new HashSet<>();
for (UUID uuid : uuids) {
if (uuid == DBFunc.everyone) {
players.addAll(plot.getPlayersInPlot());
for (PlotPlayer pp : plot.getPlayersInPlot()) {
if (pp == player || pp.hasPermission("plots.admin.entry.denied")) {
continue;
}
players.add(pp);
}
break;
}
PlotPlayer pp = UUIDHandler.getPlayer(uuid);

View File

@ -1397,7 +1397,7 @@ public class Plot {
* @return the name of the biome
*/
public String getBiome() {
Location loc = this.getBottomAbs();
Location loc = this.getCenter();
return WorldUtil.IMP.getBiome(loc.getWorld(), loc.getX(), loc.getZ());
}