fix: 진행 중 $rng 호출 관련 버그 수정

This commit is contained in:
2022-05-17 23:28:31 +09:00
parent 8665838472
commit b22987f21b
5 changed files with 7 additions and 9 deletions
+1 -3
View File
@@ -4,8 +4,6 @@ namespace sammo;
class WarUnit
{
public readonly RandUtil $rng;
protected $general;
protected $rawNation;
@@ -34,7 +32,7 @@ class WarUnit
protected $logActivatedSkill = [];
protected $isFinished = false;
private function __construct(RandUtil $rng, General $general)
private function __construct(public readonly RandUtil $rng, General $general)
{
$this->rng = $rng;
$this->general = $general;