fix(game): 국가 수 판정에서 합성 재야를 제외한다
Ref nation table에 없는 id=0 행이 정찰 차단과 월간 경매 난수 소비에 관여하지 않도록 모집단을 맞춘다. Ref의 maxnation 건국 표시 제한도 실행 제약을 늘리지 않고 명령표에 이관한다.
This commit is contained in:
@@ -414,7 +414,8 @@ const createMonthlyCalendarRuntime = async (options: {
|
||||
clock: Clock;
|
||||
}) => {
|
||||
const cache: MonthlyRuntimeCache = {
|
||||
nationPowerRollCount: options.snapshot.nations.length,
|
||||
// Ref's monthly nation query has no Core-only id=0 neutral row.
|
||||
nationPowerRollCount: options.snapshot.nations.filter((nation) => nation.id > 0).length,
|
||||
tournamentRollConsumed: false,
|
||||
};
|
||||
const unification = options.calendarHandlerOverride
|
||||
|
||||
Reference in New Issue
Block a user