Re added get function with Player parameter for PlayerEntityCollection for backwards compatibility
This commit is contained in:
@@ -29,6 +29,11 @@ public abstract class PlayerEntityCollection<E extends Entity> extends EntityCol
|
||||
return this.get(player.getUniqueId().toString());
|
||||
}
|
||||
|
||||
public E get(Player player)
|
||||
{
|
||||
return this.get(player.getUniqueId().toString());
|
||||
}
|
||||
|
||||
public Set<E> getOnline() {
|
||||
Set<E> entities = new HashSet<E>();
|
||||
for (Player player : Bukkit.getServer().getOnlinePlayers()) {
|
||||
|
||||
Reference in New Issue
Block a user