fix(logic): 전투 특기의 비전투 커맨드 효과를 복구
모병에서도 실제 행동명을 특기 계산에 전달해 징병 특기의 훈련과 사기를 레거시 값으로 맞춘다. 의술의 환자별 기록 소유권과 PLAIN 형식, 다인 치료 요약 대상도 복구하고 전투 특기 비전투 hook 회귀를 추가한다.
This commit is contained in:
@@ -1591,7 +1591,10 @@ export const createReservedTurnHandler = async (options: {
|
||||
},
|
||||
rng: preprocessRng,
|
||||
log: {
|
||||
push: (message) => logs.push(createGeneralActionLog(currentGeneral.id, message)),
|
||||
push: (message, logOptions) =>
|
||||
logs.push(createGeneralActionLog(currentGeneral.id, message, logOptions)),
|
||||
pushForGeneral: (generalId, message, logOptions) =>
|
||||
logs.push(createGeneralActionLog(generalId, message, logOptions)),
|
||||
},
|
||||
});
|
||||
preTurnPipeline.getPreTurnExecuteTriggerList(preTurnContext).fire(preTurnContext, baseConstraintEnv);
|
||||
|
||||
Reference in New Issue
Block a user