We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e90c03e commit b0fa43dCopy full SHA for b0fa43d
1 file changed
Assets/EC2018/CountInDetailPopulator.cs
@@ -20,8 +20,9 @@ public string GetPlayerName(PlayerType playerType) {
20
string playerName;
21
if (playerType == PlayerType.A) {
22
playerName = new DirectoryInfo(allPlayers[0]).Name;
23
- }
24
- playerName = new DirectoryInfo(allPlayers[1]).Name;
+ } else {
+ playerName = new DirectoryInfo(allPlayers[1]).Name;
25
+ }
26
27
if(playerName.Length > MaxLength) {
28
playerName = playerName.Substring(0, MaxLength) + "...";
0 commit comments