From d6bbb010e7d314c20d39de24fbbd7fe49b79bc67 Mon Sep 17 00:00:00 2001
From: yyl <yyl>
Date: 星期三, 22 四月 2026 10:06:55 +0800
Subject: [PATCH] Merge branch 'master' of http://192.168.1.20:10010/r/Project_SG_scripts
---
Main/System/OtherPlayerDetail/OtherHeroDetailWin.cs | 16 ++++++++++++++--
1 files changed, 14 insertions(+), 2 deletions(-)
diff --git a/Main/System/OtherPlayerDetail/OtherHeroDetailWin.cs b/Main/System/OtherPlayerDetail/OtherHeroDetailWin.cs
index dcd9aed..a08cdef 100644
--- a/Main/System/OtherPlayerDetail/OtherHeroDetailWin.cs
+++ b/Main/System/OtherPlayerDetail/OtherHeroDetailWin.cs
@@ -82,8 +82,20 @@
return;
}
heroInfo.CalculateFightPower();
- attrDict = FightPowerManager.Instance.GetHeroTotalAttr(heroInfo);
- DisplayByMyPack(heroInfo, data);
+
+ if (data.battleName == BattleConst.WarlordPavilionBattleField)
+ {
+ FightPowerManager.Instance.djgAttrs = WarlordPavilionManager.Instance.GetAllAttrBonus();
+ attrDict = FightPowerManager.Instance.GetHeroTotalAttr(heroInfo);
+ FightPowerManager.Instance.djgAttrs.Clear();
+ DisplayByMyPack(heroInfo, data);
+ }
+ else
+ {
+ attrDict = FightPowerManager.Instance.GetHeroTotalAttr(heroInfo);
+ DisplayByMyPack(heroInfo, data);
+ }
+
}
else
{
--
Gitblit v1.8.0