Skip to content

Commit

Permalink
once again count 5000 extra for deposits
Browse files Browse the repository at this point in the history
  • Loading branch information
fohristiwhirl committed Oct 6, 2018
1 parent d56690f commit b29a1b1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions fluorine_renderer.html
Original file line number Diff line number Diff line change
Expand Up @@ -1513,12 +1513,12 @@
lines.push(`<li>Losses: ${renderer.cumulative_build_counts[pid][renderer.turn] - (renderer.ship_count(pid) + dropoffs)} &ndash; suicides: ${renderer.self_loss_counts[pid][renderer.turn]}</li>`);
lines.push(`<li>Dropoffs: <span style="color: ${colour}">${dropoffs}</span></li>`);
lines.push(`<li>Mined: ${renderer.mined_counts[pid][renderer.turn]}</li>`);
lines.push(`<li>Deposits: ${deposited} &ndash; Spent: ${spent}</li>`);
lines.push(`<li>Deposits: ${deposited + initial} &ndash; Spent: ${spent}</li>`);

if (renderer.game.game_statistics.player_statistics[pid].last_turn_alive < renderer.turn) {
lines.push(`<li>Net + Initial: <span style="color: ${colour}">crashed</span></li>`);
lines.push(`<li>Net: <span style="color: ${colour}">crashed</span></li>`);
} else {
lines.push(`<li>Net + Initial: <span style="color: ${colour}">${current}</span></li>`);
lines.push(`<li>Net: <span style="color: ${colour}">${current}</span></li>`);
}
lines.push(`</ul>`);
}
Expand Down

0 comments on commit b29a1b1

Please sign in to comment.