Our RNG Git Hash Bug

by Tim Mendez · 2024-09-07

Yml from the blog post:

## gameServerVersion: <gitHashOfDeployedCommitGoesHere>
gameServerVersion: 556474e378

The hash was interpreted as scientific notation for $556474 \cdot 10^{378}$. The fix was to adding quotes:

gameServerVersion: "556474e378"