diff --git a/src/game/persistence.ts b/src/game/persistence.ts index 9ad0634..293140a 100644 --- a/src/game/persistence.ts +++ b/src/game/persistence.ts @@ -94,7 +94,10 @@ function getStackTrace() { function checkNaNAndWrite(persistent: Persistent, value: T) { // Decimal is smart enough to return false on things that aren't supposed to be numbers - if (Decimal.isNaN(value as DecimalSource)) { + if ( + Decimal.isNaN(value as DecimalSource) && + !Decimal.isNaN(persistent.value as DecimalSource) + ) { if (!state.hasNaN) { player.autosave = false; state.hasNaN = true;