From d6dff8b6d8ab3da73405d3b9ecc2b47e5dab57ab Mon Sep 17 00:00:00 2001 From: hujiabin Date: Thu, 23 Mar 2023 20:55:13 +0800 Subject: [PATCH] 1 --- webapp/controller/BattleController.class.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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(), ) ); }