Compare commits

...
Author SHA1 Message Date
jyp9 d573e9f98a fix: 병가 인구 상승률 버그 수정
fix: 병가 인구 상승률 버그 수정
2024-07-30 14:55:40 +09:00
+1 -1
View File
@@ -29,7 +29,7 @@ class che_병가 extends \sammo\BaseNation{
return $value; return $value;
} }
public function onCalcNationalIncome(string $type, $amount):int{ public function onCalcNationalIncome(string $type, $amount){
if($type == 'pop' && $amount > 0){ if($type == 'pop' && $amount > 0){
return $amount * 0.8; return $amount * 0.8;
} }