Skip to content

Commit a969c7d

Browse files
authored
Merge pull request #39 from Centurion-Creative-Connect/bug/fix-flattened-pm-list
Fix missing newline in the listing format
2 parents bd9938b + 8bc9419 commit a969c7d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Packages/org.centurioncc.system.commands/Runtime/Command/PlayerManagerCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -796,7 +796,7 @@ private string HandleList(NewbieConsole console, string[] arguments)
796796
return HandleNonJoinedList(console);
797797

798798
var shooterPlayers = playerManager.GetPlayers();
799-
const string format = "{0, -20}, {1, 7}, {2, 7}, {3, 7}, {4, 7}, {5, 7}, {6, 20}";
799+
const string format = "{0, -20}, {1, 7}, {2, 7}, {3, 7}, {4, 7}, {5, 7}, {6, 20}\n";
800800
var activePlayerCount = 0;
801801
var list = "Player Instance Statuses:\n";
802802
list += string.Format(format, "Name", "Active", "IsDead", "Team", "KD", "Role", "Id:DisplayName");

0 commit comments

Comments
 (0)