From 6bc8a17ed56027c54cdd523dda04a049f5e2e8dd Mon Sep 17 00:00:00 2001
From: yyl <yyl>
Date: 星期三, 21 一月 2026 10:40:54 +0800
Subject: [PATCH] 125 战斗 修复战斗卡死问题 并移除了子技能的设计 只有内嵌技能
---
Main/System/Battle/BattleManager.cs | 12 ------------
1 files changed, 0 insertions(+), 12 deletions(-)
diff --git a/Main/System/Battle/BattleManager.cs b/Main/System/Battle/BattleManager.cs
index 0c3f244..597c6f8 100644
--- a/Main/System/Battle/BattleManager.cs
+++ b/Main/System/Battle/BattleManager.cs
@@ -192,10 +192,6 @@
{
temp += " pack type is " + pack.GetType().Name + " tag is " + (b426Pack.startTag != null ? b426Pack.startTag.Tag : "null") + "\n";
}
- else if (pack is CustomB421ActionPack b421Pack)
- {
- temp += " pack type is " + pack.GetType().Name + " guid is " + b421Pack.guid + "\n";
- }
else
{
temp += " pack type is " + pack.GetType().Name + "\n";
@@ -336,10 +332,6 @@
if (pack is CustomHB426CombinePack combinePack)
{
combinePack.Distribute();
- }
- else if (pack is CustomB421ActionPack actionPack)
- {
- actionPack.Distribute();
}
else
{
@@ -482,10 +474,6 @@
if (pack is CustomHB426CombinePack combinePack)
{
combinePack.Distribute();
- }
- else if (pack is CustomB421ActionPack actionPack)
- {
- actionPack.Distribute();
}
else
{
--
Gitblit v1.8.0