Browse Source

【BUG】解决服务器闪退问题,因接入战斗服,所有消息必须都走网络层

johnclot69 1 year ago
parent
commit
1ce77f05a5

+ 5 - 5
DotNet/Hotfix/Module/Actor/ActorMessageSenderComponentSystem.cs

@@ -104,11 +104,11 @@ namespace ET.Server
             ProcessActorId processActorId = new(actorId);
 
             // 这里做了优化,如果发向同一个进程,则直接处理,不需要通过网络层
-            if (processActorId.Process == Options.Instance.Process)
-            {
-                NetInnerComponent.Instance.HandleMessage(actorId, message);
-                return;
-            }
+            // if (processActorId.Process == Options.Instance.Process)
+            // {
+            //     NetInnerComponent.Instance.HandleMessage(actorId, message);
+            //     return;
+            // }
 
             Session session = NetInnerComponent.Instance.Get(processActorId.Process);
             session.Send(processActorId.ActorId, message);

+ 1 - 1
DotNet/Hotfix/Module/FastStream/FastStreamComponentSystem.cs

@@ -65,7 +65,7 @@ namespace ET.Server
 
             //找到此unit对应的Player(id相同)
             WNPlayer player = FastStreamComponent.Instance.DomainScene().GetComponent<GamePlayerComponent>().Get(usrid);
-            if (player != null )
+            if (player != null)
             {
                 MessageHelper.SendToClient(player, new BattleEventPush() { key = (ushort)BattlePushCnst.FastStreamPush, data = data});
             }