Cross-healing times were not properly calculated.
        http://www.uodemise.com/forum/showthread.php?t=120698

Housing

        Secured containers should count against lockdowns
        http://www.uodemise.com/forum/showthread.php?t=140087
This commit is contained in:
xavier 2010-03-20 12:57:07 +00:00
parent 1d74d05af4
commit f20b1af778
2 changed files with 24 additions and 8 deletions

View file

@ -291,12 +291,18 @@ namespace Server.Multis
ArrayList list = m_Secures;
for ( int i = 0; list != null && i < list.Count; ++i )
if ( list != null )
{
SecureInfo si = (SecureInfo)list[i];
for ( int i = 0; i < list.Count; ++i )
{
SecureInfo si = (SecureInfo)list[i];
fromSecures += si.Item.TotalItems;
fromSecures += si.Item.TotalItems;
}
fromLockdowns += list.Count;
}
if ( m_LockDowns != null )
fromLockdowns += m_LockDowns.Count;