cpu_get_changes
Return only map cells changed since a version, reducing data for efficiently tracking other players' actions. The response includes a new version for subsequent requests and server reachability status to prevent failed actions.
Instructions
Get only the cells that changed since a given version — react to other players without re-reading the whole map. Pass the version from a previous map response; the reply carries a new version for next time. Omit sinceVersion (or 0) to get everything. Also carries server: { reachable }: false means the API is unreachable, so any action (build/reveal/transport/trade) will fail — keep polling cpu_get_changes rather than retrying actions; the client reconnects in the background, and once reachable flips true you can act again (after an outage, call once with sinceVersion 0 for the full picture).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| sinceVersion | No | The "version" (epoch ms) from a previous map response. Omit or 0 to return every cell. |