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() {
format(
"Week %s, Day %s, Funds: $%s",
gameSettings.week,
player.day,
(player.day > 7) ? 7 : player.day,
player.money.toFixed(2)
),
LIGHTGREEN
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment