setResultTurn 버그 수정

This commit is contained in:
2020-05-31 17:21:51 +09:00
parent 215a7501a6
commit eb90b33485
59 changed files with 62 additions and 60 deletions
+1 -1
View File
@@ -9,7 +9,7 @@ abstract class NationCommand extends BaseCommand{
public function __construct(General $generalObj, array $env, LastTurn $lastTurn, $arg = null){
$this->lastTurn = $lastTurn;
$this->resultTurn = new LastTurn();
$this->resultTurn = $lastTurn->duplicate();
parent::__construct($generalObj, $env, $arg);
}