fix: 누락분 수정

This commit is contained in:
2023-05-11 01:08:10 +09:00
parent 8f5d9194f8
commit 5229cbe09e
2 changed files with 4 additions and 2 deletions
+3 -1
View File
@@ -69,7 +69,9 @@ class GameUnitDetail implements iAction
$this->info = $info;
$this->initSkillTrigger = $initSkillTrigger;
$this->phaseSkillTrigger = $phaseSkillTrigger;
$this->iActionList = array_map('buildActionCrewTypeClass', $iActionList ?? []);
$this->iActionList = array_map(function($rawAction){
return buildActionCrewTypeClass($rawAction);
}, $iActionList ?? []);
}
public function getInfo(): string