Skip to content

Commit

Permalink
Fixed bug when available characters list doesn't get updated (fixed #29)
Browse files Browse the repository at this point in the history
  • Loading branch information
IncoCode committed Sep 19, 2015
1 parent 07dd565 commit 8571cac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Code/AccountInBank/MenuController.cs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ public MenuController( Bank bank, MySettings settings )
this._bank = bank;
this._mySettings = settings;
this._menuPool = new MenuPool();
this.CreateMenus();
}

public void Tick()
Expand Down Expand Up @@ -136,6 +135,7 @@ private void CreateMenus()

public void ShowBankMenu()
{
this.CreateMainMenu();
this._mainMenu.Visible = true;
}

Expand Down

0 comments on commit 8571cac

Please sign in to comment.