add OnSingleClick for BulkOrderBook and Aquarium

allow primary LadderController instance to be deleted
add MessageRuleset method to DuelContext
This commit is contained in:
Mark Sturgill 2014-02-22 12:56:58 -07:00
parent 041c976ddc
commit 76b7fa6f30
4 changed files with 108 additions and 2 deletions

View file

@ -30,8 +30,10 @@ namespace Server.Engines.ConPVP
public override void Delete()
{
if ( Ladder.Instance != m_Ladder )
base.Delete();
if ( Ladder.Instance == m_Ladder )
Ladder.Instance = null;
base.Delete();
}
public LadderController( Serial serial ) : base( serial )