버그 수정

This commit is contained in:
2020-04-28 01:50:25 +09:00
parent d603557c35
commit 7aa826fc80
6 changed files with 23 additions and 57 deletions
+10
View File
@@ -422,6 +422,16 @@ class General implements iAction{
return $this->getStatValue('intel', $withInjury, $withIActionObj, $withStatAdjust, $useFloor);
}
function getDex(GameUnitDetail $crewType){
$armType = $crewType->armType;
if($armType == GameUnitConst::T_CASTLE){
$armType = GameUnitConst::T_SIEGE;
}
return $this->getVar("dex{$armType}");
}
function addDex(GameUnitDetail $crewType, float $exp, bool $affectTrainAtmos=false){
$armType = $crewType->armType;