diff --git a/hwe/sammo/StaticEvent/event_부대발령즉시집합.php b/hwe/sammo/StaticEvent/event_부대발령즉시집합.php index 488a6dff..0eff569a 100644 --- a/hwe/sammo/StaticEvent/event_부대발령즉시집합.php +++ b/hwe/sammo/StaticEvent/event_부대발령즉시집합.php @@ -48,6 +48,10 @@ class event_부대발령즉시집합 extends \sammo\BaseStaticEvent 'city'=>$destCityID ], 'no IN %li', $generalList); } + if($general->getVar('troop') === $troopID){ + $general->setVar('city', $destCityID); + } + foreach($generalList as $targetGeneralID){ $targetLogger = new ActionLogger($targetGeneralID, $general->getNationID(), $env['year'], $env['month']); $targetLogger->pushGeneralActionLog("{$troopName} 부대원들은 {$cityName}{$josaRo} 즉시 집합되었습니다.", ActionLogger::PLAIN); diff --git a/hwe/sammo/StaticEvent/event_부대탑승즉시이동.php b/hwe/sammo/StaticEvent/event_부대탑승즉시이동.php index 51fd94b2..21acc01d 100644 --- a/hwe/sammo/StaticEvent/event_부대탑승즉시이동.php +++ b/hwe/sammo/StaticEvent/event_부대탑승즉시이동.php @@ -43,7 +43,7 @@ class event_부대탑승즉시이동 extends \sammo\BaseStaticEvent $cityName = CityConst::byID($destGeneral->getCityID())->name; $general->setVar('city', $destGeneral->getCityID()); $josaRo = JosaUtil::pick($cityName, '로'); - $general->getLogger()->pushGeneralActionLog("부대 주둔지인 {$cityName}{$josaRo}로 즉시 이동합니다.", ActionLogger::PLAIN); + $general->getLogger()->pushGeneralActionLog("부대 주둔지인 {$cityName}{$josaRo} 즉시 이동합니다.", ActionLogger::PLAIN); $general->applyDB(DB::db()); return true;