From a48e8d76334749e0c3b16e8293606aa3803401c5 Mon Sep 17 00:00:00 2001 From: mark Date: Sun, 16 Sep 2007 05:55:54 +0000 Subject: [PATCH] mono fun --- Scripts/Accounting/Accounts.cs | 4 ++++ 1 file changed, 4 insertions(+) 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 )