diff --git a/webapp/controller/BattleController.class.php b/webapp/controller/BattleController.class.php index a2e21910..7b185fb6 100644 --- a/webapp/controller/BattleController.class.php +++ b/webapp/controller/BattleController.class.php @@ -410,9 +410,12 @@ class BattleController extends BaseAuthedController { } $data = $row; $data['data'] = json_decode($row['data'],true); + $propertyChgService = new services\PropertyChgService(); + $propertyChgService->addUserChg(); $this->_rspData( array( - 'info'=>$data + 'info'=>$data, + 'property_chg' => $propertyChgService->toDto(), ) ); }