| splatnet bugs - frozenpandaman/s3s GitHub Wiki
Current bugs
Floating point display error
Pay grades can be displayed incorrectly in the app, e.g. an in-game pay grade of 2.30 is shown as 2.29 on SplatNet.
Following the equation shown, ⌊(114 × 2.29) + 50⌋ = 311, but the point total is given as 312p.
This is a user-facing, visual error only; in this example, the SplatNet JSON records the pay grade as
jobRate: 2.3
, which is the number actually used in the calculation.
In-game display SplatNet display
Former bugs
Incorrect power egg counts
Fixed around Fresh Season 2023.
Users' (and thus total) power egg counts can sometimes be off by one.
In-game display SplatNet display
King Salmonid bonus discrepancy
Fixed around Chill Season 2022.
The game awards a bonus of +100 even when losing to a King Salmonid, rather than +50 as SplatNet shows. However, SplatNet still uses the "100" value in its point total calculation.
⌊(84 × 1.95) + 50⌋ = 213, but the point total is given as 263p.
In-game display SplatNet display
Mothership Golden Egg count discrepancy
Fixed around Chill Season 2022.
The counts for Golden Eggs collected by each player does not account for those stolen by the Mothership.
Display at top: 108
Wave totals: 32 + 38 + 38 = 108
Player totals: 26 + 18 + 28 + 39 = 111
In-game display SplatNet display –