diff options
author | emkael <emkael@tlen.pl> | 2018-11-16 22:46:50 +0100 |
---|---|---|
committer | emkael <emkael@tlen.pl> | 2018-11-16 22:46:50 +0100 |
commit | f20dc6512a46f7a567fc752eb653a764d9b6af3b (patch) | |
tree | b02a215b3eda1bc1addedb47aea736b2706264ac /Aktywator/MainForm.cs | |
parent | 8c1d77e431d969ab9fb6e81a07ae8da631a9beb0 (diff) |
Bugfixes for scoring type options
Diffstat (limited to 'Aktywator/MainForm.cs')
-rw-r--r-- | Aktywator/MainForm.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Aktywator/MainForm.cs b/Aktywator/MainForm.cs index 0f456ea..aad3170 100644 --- a/Aktywator/MainForm.cs +++ b/Aktywator/MainForm.cs @@ -38,8 +38,8 @@ namespace Aktywator if (!MySQL.getConfigured()) (new MysqlSettings()).ShowDialog(); this._scoringType = new Dictionary<RadioButton, int>(); this._scoringType.Add(this.rbMatchpoints, 1); - this._scoringType.Add(this.rbIMPCavendish, 2); - this._scoringType.Add(this.rbIMPButler, 3); + this._scoringType.Add(this.rbIMPButler, 2); + this._scoringType.Add(this.rbIMPCavendish, 3); this._scoringType.Add(this.rbIMPTeams, 4); } |