아주 약간 효율적으로 수정

This commit is contained in:
포스트모더니즘
2024-01-26 22:17:06 +09:00
parent dd2b032fa3
commit 2f00aee947
+1 -1
View File
@@ -3440,10 +3440,10 @@ class GeneralAI
$cmd = buildGeneralCommandClass($this->rng->choice($candidate), $this->general, $this->env); $cmd = buildGeneralCommandClass($this->rng->choice($candidate), $this->general, $this->env);
if (!$cmd->hasFullConditionMet()) { if (!$cmd->hasFullConditionMet()) {
$cmd = buildGeneralCommandClass('che_물자조달', $this->general, $this->env); $cmd = buildGeneralCommandClass('che_물자조달', $this->general, $this->env);
}
if (!$cmd->hasFullConditionMet()) { if (!$cmd->hasFullConditionMet()) {
$cmd = buildGeneralCommandClass('che_견문', $this->general, $this->env); $cmd = buildGeneralCommandClass('che_견문', $this->general, $this->env);
} }
}
return $cmd; return $cmd;
} }