mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2025-06-29 04:04:43 +02:00
Fixes
This commit is contained in:
@ -106,7 +106,7 @@ public class MainUtil {
|
||||
public static List<PlotPlayer> getPlayersInPlot(Plot plot) {
|
||||
ArrayList<PlotPlayer> players = new ArrayList<>();
|
||||
for (PlotPlayer pp : UUIDHandler.getPlayers().values()) {
|
||||
if (plot.equals(MainUtil.getPlot(pp.getLocation()))) {
|
||||
if (plot.equals(pp.getCurrentPlot())) {
|
||||
players.add(pp);
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user