리뷰 내용 반영

This commit is contained in:
포스트모더니즘
2024-01-26 22:13:44 +09:00
parent 69f4d8e2c7
commit dd2b032fa3
2 changed files with 9 additions and 8 deletions
@@ -90,9 +90,8 @@ class BuildNationCandidate extends \sammo\BaseAPI
return '거병을 실패했습니다.';
}
if ($general->getNPCType() < 2){
$general->setVar('killturn', $env['killturn']);
}
$general->setVar('killturn', $env['killturn']);
$general->applyDB($db);
return null;
}
+7 -5
View File
@@ -3438,12 +3438,14 @@ class GeneralAI
$cmd = buildGeneralCommandClass($this->rng->choice($candidate), $this->general, $this->env);
if ($cmd->hasFullConditionMet()) return $cmd;
if (!$cmd->hasFullConditionMet()) {
$cmd = buildGeneralCommandClass('che_물자조달', $this->general, $this->env);
}
if (!$cmd->hasFullConditionMet()) {
$cmd = buildGeneralCommandClass('che_견문', $this->general, $this->env);
}
$cmd = buildGeneralCommandClass('che_물자조달', $this->general, $this->env);
if ($cmd->hasFullConditionMet()) return $cmd;
return buildGeneralCommandClass('che_견문', $this->general, $this->env);
return $cmd;
}
protected function categorizeNationCities(): void