Skip to content

Commit

Permalink
Speed up keypad response
Browse files Browse the repository at this point in the history
  • Loading branch information
dukeofsussex committed Apr 23, 2023
1 parent 2b88122 commit ca00a89
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Game/Modules/Keypad.cs
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ public override string Process(string command, Bomb bomb)

List<string> output = this.symbols.OrderBy(column.IndexOf).ToList();

return $"First is {output[0]}, then {output[1]}, then {output[2]}, then {output[3]}.";
return $"{string.Join(", ", output)}.";
}
}
}

0 comments on commit ca00a89

Please sign in to comment.