You guys are not running 2.0 or at least RC1 or the latest or something..
http://svn.runuo.com/repos/runuo/dev.../BaseHouse.cs:
Code:
List<BaseHouse> allHouses = new List<BaseHouse>();
for ( int i = 0; i < acct.Length; ++i )
{
Mobile mob = acct[i];
if ( mob != null )
allHouses.AddRange( GetHouses( mob ) );
}
Arraylist stuff was changed for List<> usage and is a difference of 1.0 and 2.0... I also synced a fresh version of the SVN at 187 and it is using the List<> format. Don't know what you guys are running, but it's not the 2.0 I'm using...
