diff --git a/Scripts/Accounting/Account.cs b/Scripts/Accounting/Account.cs index 5c82d0c0f..d401530ce 100644 --- a/Scripts/Accounting/Account.cs +++ b/Scripts/Accounting/Account.cs @@ -9,6 +9,7 @@ using System.Xml; using Server; using Server.Misc; using Server.Mobiles; +using Server.Multis; using Server.Network; namespace Server.Accounting @@ -41,7 +42,7 @@ namespace Server.Accounting if ( m == null ) continue; - List list = Multis.BaseHouse.GetHouses( m ); + List list = BaseHouse.GetHouses( m ); for ( int j = 0; j < list.Count; ++j ) list[j].Delete(); diff --git a/Scripts/Multis/BaseHouse.cs b/Scripts/Multis/BaseHouse.cs index 408ae2be6..7786571cf 100644 --- a/Scripts/Multis/BaseHouse.cs +++ b/Scripts/Multis/BaseHouse.cs @@ -1076,7 +1076,7 @@ namespace Server.Multis if ( owner != null ) { - List list = null; m_Table.TryGetValue( owner, out list ); if ( list == null ) @@ -2480,7 +2480,7 @@ namespace Server.Multis if ( m_Owner != null ) { - List list = null; m_Table.TryGetValue( m_Owner, out list ); if ( list == null ) @@ -2589,7 +2589,7 @@ namespace Server.Multis { if ( m_Owner != null ) { - List list = null; m_Table.TryGetValue( m_Owner, out list ); if ( list == null ) @@ -2603,7 +2603,7 @@ namespace Server.Multis if ( m_Owner != null ) { - List list = null; m_Table.TryGetValue( m_Owner, out list ); if ( list == null ) @@ -2839,7 +2839,7 @@ namespace Server.Multis if ( m_Owner != null ) { - List list = null; m_Table.TryGetValue( m_Owner, out list ); if ( list == null ) @@ -2972,7 +2972,7 @@ namespace Server.Multis if ( m == null ) return false; - List list = null; m_Table.TryGetValue( m, out list ); if ( list == null )