Re added get function with Player parameter for PlayerEntityCollection for backwards compatibility

This commit is contained in:
Steven Timotius 2014-06-03 21:02:24 -07:00
parent a8e3b3c1e2
commit b3a37576cd
1 changed files with 5 additions and 0 deletions

View File

@ -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()) {