yyl
15 小时以前 e2d4f9314a5097f961250b5e06b66660dc247312
Main/System/Battle/BattleManager.cs
@@ -659,4 +659,16 @@
        }
        return null;
    }
    public void DestroyAllBattleField()
    {
        foreach (var kvp in battleFields)
        {
            BattleField battleField = kvp.Value;
            if (battleField == null)
                continue;
            DestroyBattleField(battleField);
        }
    }
}