Merge branch 'hjb' of git.kingsome.cn:server/game2006api into hjb

This commit is contained in:
aozhiwei 2023-09-27 15:31:08 +08:00
commit 74e93a6016

View File

@ -157,7 +157,11 @@ class AvatarController extends BaseAuthedController {
LogService::consumeDiamond($event); LogService::consumeDiamond($event);
} }
Avatar::addAvatar($itemMeta); Avatar::addAvatar($itemMeta);
$this->_rspOk(); $propertyChgService = new services\PropertyChgService();
$propertyChgService->addUserChg();
$this->_rspData(array(
'property_chg' => $propertyChgService->toDto(),
));
} }
} }