diff --git a/Scripts/Accounting/Accounts.cs b/Scripts/Accounting/Accounts.cs index 511fe5df1..d79fd7a41 100644 --- a/Scripts/Accounting/Accounts.cs +++ b/Scripts/Accounting/Accounts.cs @@ -24,7 +24,11 @@ namespace Server.Accounting public static ICollection GetAccounts() { +#if !MONO return m_Accounts.Values; +#else + return new List( m_Accounts.Values ); +#endif } public static IAccount GetAccount( string username )