装备:修复composeStone返回

This commit is contained in:
luying
2022-02-21 15:25:41 +08:00
parent b926388fc8
commit 093a2e9447

View File

@@ -668,7 +668,7 @@ export class EquipHandler {
if (!costResult) return resResult(STATUS.ROLE_MATERIAL_NOT_ENOUGH);
let goods = await addItems(roleId, roleName, sid, [{ id, count }], ITEM_CHANGE_REASON.COMPOSE_STONE);
return resResult(STATUS.SUCCESS, goods);
return resResult(STATUS.SUCCESS, { goods });
}
}