View Single Post
Old 06-28-2007, 01:21 PM   #13 (permalink)
CEO
Forum Novice
 
CEO's Avatar
 
Join Date: Jun 2004
Age: 49
Posts: 808
Default

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...
__________________
If you PM me and ask me to write scripts for you I will add you to my ignore list.
Please don't add me to your friends list, I have enough friends. Thx
CEO is offline   Reply With Quote