View Single Post
Old 08-07-2008, 12:43 AM   #11 (permalink)
Joeku
Forum Master
 
Joeku's Avatar
 
Join Date: Feb 2005
Location: ShatteredSosaria.com
Posts: 9,260
Default

In UmbarianStone.cs, this:
Code:
m_List = new List<Mobile>();
needs to be this:
Code:
List<Mobile> m_List = new List<Mobile>();
Joeku is offline   Reply With Quote