버그 수정

This commit is contained in:
2019-10-05 01:19:58 +09:00
parent 53a3767829
commit 614cd1c96f
2 changed files with 5 additions and 5 deletions
+2 -2
View File
@@ -228,10 +228,10 @@ class General implements iAction{
if($withStatAdjust){
if($statName === 'strength'){
$statValue *= Util::round($this->getStatValue('intel', $withInjury, $withItem, false, false) / 4);
$statValue += Util::round($this->getStatValue('intel', $withInjury, $withItem, false, false) / 4);
}
else if($statName === 'intel'){
$statValue *= Util::round($this->getStatValue('strength', $withInjury, $withItem, false, false) / 4);
$statValue += Util::round($this->getStatValue('strength', $withInjury, $withItem, false, false) / 4);
}
}