Sync with L2JServer Jan 9th 2015.

This commit is contained in:
mobius
2015-01-09 19:55:02 +00:00
parent 9c9b0aaff7
commit 4c2db62a63
618 changed files with 19803 additions and 7853 deletions

View File

@@ -516,9 +516,9 @@ public class L2Clan implements IIdentifiable, INamable
EventDispatcher.getInstance().notifyEventAsync(new OnPlayerClanLeft(exMember, this));
}
public L2ClanMember[] getMembers()
public Collection<L2ClanMember> getMembers()
{
return _members.values().toArray(new L2ClanMember[_members.size()]);
return _members.values();
}
public int getMembersCount()