diff --git a/static/fx_core.js b/static/fx_core.js
index 68c8b87..9e9994b 100644
--- a/static/fx_core.js
+++ b/static/fx_core.js
@@ -246,7 +246,7 @@ const playerList = new (function () {
let listContent = `
Players (${gHumans})
`;
for (let i = 0; i < gLobbyMaxJoin; i++) {
if (i === gHumans) listContent += `Bots (${gLobbyMaxJoin - gHumans})
`;
- listContent += `${i}. ${escapeHtml(playerNames[i])} |
`
+ listContent += `${i + 1}. ${escapeHtml(playerNames[i])} |
`
}
document.getElementById("playerlist_content").innerHTML = listContent;
document.getElementById("playerlist_content").setAttribute("class", getVar("gIsTeamGame") ? "clickable" : "");