Skip to content
Snippets Groups Projects
Commit aff1c552 authored by echicken's avatar echicken
Browse files

List the current day as 7 even if it's '8' (today's turns have been played.)

parent 156b6f00
No related branches found
No related tags found
No related merge requests found
...@@ -129,7 +129,7 @@ var makeStats = function() { ...@@ -129,7 +129,7 @@ var makeStats = function() {
format( format(
"Week %s, Day %s, Funds: $%s", "Week %s, Day %s, Funds: $%s",
gameSettings.week, gameSettings.week,
player.day, (player.day > 7) ? 7 : player.day,
player.money.toFixed(2) player.money.toFixed(2)
), ),
LIGHTGREEN LIGHTGREEN
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment