Commit 2479738a authored by nanahira's avatar nanahira

fix

parent 047da4aa
...@@ -2520,7 +2520,7 @@ ...@@ -2520,7 +2520,7 @@
cname = cname + " (IP: " + player.ip.slice(7) + ")"; cname = cname + " (IP: " + player.ip.slice(7) + ")";
} }
if (settings.modules.http.show_info && room.started && !(room.hostinfo.mode === 2 && player.pos > 1)) { if (settings.modules.http.show_info && room.started && !(room.hostinfo.mode === 2 && player.pos > 1)) {
cname = cname + " (Score:" + room.scores[player.name] + " LP:" + (player.lp != null ? player.lp : 0) + ")"; cname = cname + " (Score:" + room.scores[player.name] + " LP:" + (player.lp != null ? player.lp : room.hostinfo.start_lp) + ")";
} }
if (player.pos != null) { if (player.pos != null) {
results1.push({ results1.push({
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment