This commit is contained in:
mark 2007-09-16 05:55:54 +00:00
parent f6fcf9b60a
commit a48e8d7633

View file

@ -24,7 +24,11 @@ namespace Server.Accounting
public static ICollection<IAccount> GetAccounts()
{
#if !MONO
return m_Accounts.Values;
#else
return new List<IAccount>( m_Accounts.Values );
#endif
}
public static IAccount GetAccount( string username )