From 3b2a6bb9047cfce9f501593b3669a9c1af6c5df4 Mon Sep 17 00:00:00 2001
From: lcy <1459594991@qq.com>
Date: 星期三, 05 十一月 2025 17:40:23 +0800
Subject: [PATCH] 130 战斗修改回合样式
---
Main/System/BoneField/BoneFieldManager.cs | 15 ++-------------
1 files changed, 2 insertions(+), 13 deletions(-)
diff --git a/Main/System/BoneField/BoneFieldManager.cs b/Main/System/BoneField/BoneFieldManager.cs
index 7648ffd..3305407 100644
--- a/Main/System/BoneField/BoneFieldManager.cs
+++ b/Main/System/BoneField/BoneFieldManager.cs
@@ -1,12 +1,11 @@
using System.Collections.Generic;
-using DG.DemiEditor;
using LitJson;
public class BoneFieldManager : GameSystemManager<BoneFieldManager>
{
public readonly int DataMapID = 30010; // 鐧介鐩堥噹(鎴橀敜绉樺)
public readonly int MinStartLineID = 1; // funcLineID浠�1寮�濮�
- public readonly int funcId = 237; //
+ public readonly int funcId = 9; //鍔熻兘ID
public Redpoint parentRedpoint = new Redpoint(MainRedDot.MainChallengeRedpoint, MainRedDot.BoneFieldRepoint);
public override void Init()
{
@@ -133,14 +132,6 @@
return true;
}
- public void SendTurnFight(int mapID, int funcLineID)
- {
- CB410_tagCMTurnFight pack = new CB410_tagCMTurnFight();
- pack.MapID = (uint)mapID;
- pack.FuncLineID = (uint)funcLineID;
- GameNetSystem.Instance.SendInfo(pack);
- }
-
public void SendBBeginFBWipeOut(int mapID, int lineID)
{
CA505_tagCMBeginFBWipeOut pack = new CA505_tagCMBeginFBWipeOut();
@@ -149,8 +140,6 @@
pack.Cnt = 1;
GameNetSystem.Instance.SendInfo(pack);
}
-
-
public void SendBuyEnterCount(int FBID)
{
@@ -161,7 +150,7 @@
public void UpdateFBEnd(H0320_tagFBEnd vNetData)
{
- if (vNetData.Msg.IsNullOrEmpty())
+ if (vNetData.Msg == null)
return;
ChallengeResultData result = ChallengeResultData.FromJson(vNetData.Msg);
if (result == null || result.itemInfo.IsNullOrEmpty())
--
Gitblit v1.8.0