fix: match scenario 2601 monthly seed progression

This commit is contained in:
2026-08-03 18:56:23 +00:00
parent 2f17584075
commit 58b9a230a7
92 changed files with 3696 additions and 587 deletions
@@ -241,6 +241,11 @@ export const applyInitialChangeCityEvents = <T extends CitySeed>(
throw new Error('Only unconditional initial events are supported.');
}
for (const rawAction of rawEvent.slice(1)) {
if (Array.isArray(rawAction) && rawAction[0] === 'NoticeToHistoryLog') {
// Initial history logging is handled by the install history
// boundary; it has no city-state effect here.
continue;
}
if (!Array.isArray(rawAction) || rawAction[0] !== 'ChangeCity') {
throw new Error('Only ChangeCity initial actions are supported.');
}