diff --git a/src/main/resources/static/javascript/game.js b/src/main/resources/static/javascript/game.js index 5f6ab66..cb0adfc 100644 --- a/src/main/resources/static/javascript/game.js +++ b/src/main/resources/static/javascript/game.js @@ -397,9 +397,6 @@ function parsePlayersList(body) { let p_html = ''; for( let i = 0; i < body.length; i++ ) { let player = body[i]; - // player.userId - // player.displayName - // player.money p_html += sprintf(player_html_text, player); } $(".players").append(p_html);