버그 수정

This commit is contained in:
2020-04-19 18:48:56 +09:00
parent c611e98cf7
commit 8d41dead5d
11 changed files with 90 additions and 60 deletions
+4 -1
View File
@@ -41,7 +41,10 @@ class che_포상 extends Command\NationCommand{
$isGold = $this->arg['isGold'];
$amount = $this->arg['amount'];
$destGeneralID = $this->arg['destGeneralID'];
if(!is_int($amount)){
if(is_float($amount)){
$amount = Util::toInt($amount);
}
else if(!is_int($amount)){
return false;
}
$amount = Util::valueFit($amount, 100, GameConst::$maxResourceActionAmount);