diff --git a/README.md b/README.md index 12b7850..f4bd2e0 100644 --- a/README.md +++ b/README.md @@ -68,7 +68,10 @@ their own galaxy, dealt off the same seed. One board, shared by everybody. Ending a session posts every captain in the party, and the top 50 comes back ranked best first: raiders destroyed, then -days left on the orders, then torpedoes still in the racks. +whole days left on the orders, then torpedoes still in the racks. Days are +whole on the board and shown to a tenth in the game — the service's ranked +columns are integers, and a tie-break finer than a day would be measuring +the dice rather than the captain. There is no way to clear it. A captain leaves the list only by being pushed off the bottom by a better one. diff --git a/src/App.tsx b/src/App.tsx index ecf480e..3ea8c06 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -185,7 +185,8 @@ export default function App() { captains.map((c) => ({ name: c.name, killed: c.killed, - daysLeft: c.daysLeft, + // Whole days: the board's ranked columns are integers. + daysLeft: Math.floor(c.daysLeft), torpedoes: c.torpedoes, ending: c.outcome, })), diff --git a/src/components/screens.tsx b/src/components/screens.tsx index 5a5c4a0..245333d 100644 --- a/src/components/screens.tsx +++ b/src/components/screens.tsx @@ -309,7 +309,8 @@ export function HighScoreScreen({ return (