mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2025-06-28 11:44:42 +02:00
Fixes
This commit is contained in:
@ -23,6 +23,7 @@ package com.intellectualcrafters.plot.object;
|
||||
import java.util.Collection;
|
||||
import java.util.HashMap;
|
||||
import java.util.HashSet;
|
||||
import java.util.List;
|
||||
import java.util.Map.Entry;
|
||||
import java.util.UUID;
|
||||
|
||||
@ -146,6 +147,14 @@ public class Plot {
|
||||
this.temp = false;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the players currently inside this plot
|
||||
* @return
|
||||
*/
|
||||
public List<PlotPlayer> getPlayersInPlot() {
|
||||
return MainUtil.getPlayersInPlot(this);
|
||||
}
|
||||
|
||||
/**
|
||||
* Check if the plot has a set owner
|
||||
*
|
||||
|
Reference in New Issue
Block a user