feat,refac: 남은 난수 생성값 추가 수정
- rand, mt_rand, Query rand() 쓰는 영역 - 거래장, 토너먼트는 남김
This commit is contained in:
@@ -286,7 +286,7 @@ class WarUnit
|
||||
//최소 전투력 50 보장
|
||||
$warPower = max(0, $warPower);
|
||||
$warPower = ($warPower + 100) / 2;
|
||||
$warPower = rand($warPower, 100);
|
||||
$warPower = $this->rng->nextRangeInt($warPower, 100);
|
||||
}
|
||||
|
||||
$warPower *= $this->getComputedAtmos();
|
||||
|
||||
Reference in New Issue
Block a user