This commit is contained in:
2026-01-10 13:49:33 +00:00
parent 6a7151da4f
commit a6c2077be7
6 changed files with 53 additions and 35 deletions
+2 -2
View File
@@ -32,8 +32,8 @@ const readDiplomacyEntry = (
typeof record.state === 'number'
? record.state
: typeof record.stateCode === 'number'
? record.stateCode
: null;
? record.stateCode
: null;
const term = typeof record.term === 'number' ? record.term : null;
return { state, term };
}