Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
IncoCode committed May 23, 2015
1 parent 7697141 commit 529802d
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 13 deletions.
10 changes: 0 additions & 10 deletions AccountInBank.ini

This file was deleted.

5 changes: 5 additions & 0 deletions AccountInBankS.ini
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
[Settings]
MarkATMKey=B
OpenATMMenuKey=O
LoseCachOnDeath=False
LoseCachOnArrest=False
2 changes: 1 addition & 1 deletion Code/AccountInBank/AccountInBank.cs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public AccountInBank()
this._menuController = new MenuController( this._bank, Game.Player, this );
this._menuController.MenuClosed += this._menuController_MenuClosed;

this._mySettings = new MySettings( this._settings );
this._mySettings = new MySettings();
this._charactersStats = new CharacterStat[ 3 ];
this.LoadCharactersStats();
}
Expand Down
4 changes: 2 additions & 2 deletions Code/AccountInBank/MySettings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ internal class MySettings

#endregion

public MySettings( IniFile settings )
public MySettings()
{
this._settings = settings;
this._settings = new IniFile( "scripts\\AccountInBankS.ini" );
this.Load();
}

Expand Down

0 comments on commit 529802d

Please sign in to comment.