diff --git a/Content.Server/Voting/VoteCommands.cs b/Content.Server/Voting/VoteCommands.cs index aad0ee43d7..3c792dc625 100644 --- a/Content.Server/Voting/VoteCommands.cs +++ b/Content.Server/Voting/VoteCommands.cs @@ -171,7 +171,7 @@ namespace Content.Server.Voting chatMgr.DispatchServerAnnouncement(Loc.GetString("cmd-customvote-on-finished-win",("winner", args[(int) eventArgs.Winner]))); } - for (int i = 0; i < eventArgs.Votes.Count - 1; i++) + for (int i = 0; i < eventArgs.Votes.Count; i++) { var oldName = payload.Embeds[0].Fields[i].Name; var newValue = eventArgs.Votes[i].ToString();