diff options
author | emkael <emkael@tlen.pl> | 2017-09-19 19:35:01 +0200 |
---|---|---|
committer | emkael <emkael@tlen.pl> | 2017-09-19 19:35:01 +0200 |
commit | a9f5093df64222395f6b0de21e6afee954c7a9a2 (patch) | |
tree | b0b5687d5bd319529ff1d4c0a518caea066fae62 /Aktywator/Tournament.cs | |
parent | 57f308f755a8b5107a801e1d0808d1541b3b7968 (diff) |
Writing and sanitizing additional info for Teamy tournaments
Diffstat (limited to 'Aktywator/Tournament.cs')
-rw-r--r-- | Aktywator/Tournament.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Aktywator/Tournament.cs b/Aktywator/Tournament.cs index 33ecd26..fd6fec1 100644 --- a/Aktywator/Tournament.cs +++ b/Aktywator/Tournament.cs @@ -120,7 +120,7 @@ namespace Aktywator } else { - if (this._type != Tournament.TYPE_TEAMY) + if (this._type != Tournament.TYPE_TEAMY || MainForm.teamNames.arePlayerNamesDisplayed()) { string[] nameParts = name.Trim().Split(' '); if (nameParts.Length > 0) @@ -152,5 +152,6 @@ namespace Aktywator return dict; } + } } |