diff --git a/hwe/func_gamerule.php b/hwe/func_gamerule.php index 1d0b66ca..9e502662 100644 --- a/hwe/func_gamerule.php +++ b/hwe/func_gamerule.php @@ -1042,13 +1042,13 @@ function updateNationState() { } $score = $nationGen['belong'] + 5; //임관 년도 + 5 if($nationGen['level'] == 12){ - $score += 200; //NOTE: 꼬우면 군주하세요. + $score += 100; //NOTE: 꼬우면 군주하세요. } else if($nationGen['level'] == 11){ - $score += 100; + $score += 50; } else if($nationGen['level'] > 4){ - $score += 50; + $score += 25; } $uniqueLotteryWeightList[$nationGen['no']] = $score; }