1
0
Fork 0

sao: add logging to synthesize_enhancement_equipment

This commit is contained in:
Hay1tsme 2023-11-12 19:55:10 -05:00
parent b516da2e6e
commit 84b44d2a02
1 changed files with 8 additions and 0 deletions

View File

@ -326,11 +326,19 @@ class SaoBase:
if equipmentList:
equipment_data = self.game_data.item.get_user_equipment(req_data.user_id, x.user_common_reward_id)
if equipment_data is None:
self.logger.error(f"Failed to find equipment {x.user_common_reward_id} for user {req_data.user_id}!")
continue
equipment_exp = int(equipment_data["enhancement_exp"]) + int(synthesize_equipment_data["enhancement_exp"])
self.game_data.item.remove_equipment(req_data.user_id, x.user_common_reward_id)
if heroList:
hero_data = self.game_data.item.get_hero_log(req_data.user_id, x.user_common_reward_id)
if hero_data is None:
self.logger.error(f"Failed to find hero {x.user_common_reward_id} for user {req_data.user_id}!")
continue
equipment_exp = int(hero_data["log_exp"]) + int(synthesize_equipment_data["enhancement_exp"])
self.game_data.item.remove_hero_log(req_data.user_id, x.user_common_reward_id)