diff --git a/webapp/controller/HeroController.class.php b/webapp/controller/HeroController.class.php index f759a076..02a33972 100644 --- a/webapp/controller/HeroController.class.php +++ b/webapp/controller/HeroController.class.php @@ -296,7 +296,11 @@ class HeroController extends BaseAuthedController { return ; } HeroPreset::upsertPreset($heroId,$skillId,$chipPageId,$weaponUid1,$weaponUid2); - $this->_rspOk(); + $propertyChgService = new services\PropertyChgService(); + $propertyChgService->addGunChg(); + $this->_rspData(array( + 'property_chg' => $propertyChgService->toDto(), + )); }