From e8d32eef4eddd23fc2a7eeac4fa53f71ad0b9762 Mon Sep 17 00:00:00 2001 From: hide_d Date: Wed, 14 Aug 2019 01:26:05 +0900 Subject: [PATCH] =?UTF-8?q?=EC=9E=91=EC=9C=84=EB=B3=B4=EC=83=81=EC=9D=98?= =?UTF-8?q?=20=EC=88=98=EB=87=8C=20=EB=B3=B4=EC=A0=95=EC=9D=84=20=EB=82=AE?= =?UTF-8?q?=EC=B6=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- hwe/func_gamerule.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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; }