랜임모드시 임관출력 버그 수정

This commit is contained in:
2020-05-04 07:26:53 +09:00
parent d0771e3392
commit dbba6fa942
3 changed files with 19 additions and 1 deletions
+9 -1
View File
@@ -79,13 +79,21 @@ class che_초토화 extends Command\NationCommand{
}
public function getPreReqTurn():int{
return 0;
return 2;
}
public function getPostReqTurn():int{
return 24;
}
public function getCommandDetailTitle():string{
$name = $this->getName();
$reqTurn = $this->getPreReqTurn()+1;
return "{$name}/{$reqTurn}턴(공백지 화, 금쌀 회수)";
}
public function getBrief():string{
$commandName = $this->getName();
$destCityName = CityConst::byID($this->arg['destCityID'])->name;