From a11032e2e814f5d5a82a3f94bcd5d0730f27af22 Mon Sep 17 00:00:00 2001
From: hch <305670599@qq.com>
Date: 星期三, 25 二月 2026 20:41:37 +0800
Subject: [PATCH] 0312 登录地图再次验证是否卡号,卡号则直接进行下线逻辑

---
 ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/EventReport.py |    8 ++------
 1 files changed, 2 insertions(+), 6 deletions(-)

diff --git a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/EventReport.py b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/EventReport.py
index 4ccd120..d5cecfa 100644
--- a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/EventReport.py
+++ b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/EventReport.py
@@ -105,12 +105,8 @@
         playerInfo = "&%s" % urllib.urlencode(playerInfo) #UTF8 需要转成url编码才可用
         
     else:
-        # 合服情况,玩家取自己服发送,非玩家数据按指定平台配置发
-        sid = GameWorld.GetPlayerMainServerID(OperatorID)
-        if not sid:
-            GameWorld.ErrLog("GetPlayerMainServerID: %s-%s"%(OperatorID, sid))
-            return
-        RegionName = 's%s'%sid
+        serverID = GameWorld.GetGameWorld().GetServerID()
+        RegionName = 's%s'%serverID
 
     if eventParam:
         eventParam = "&%s"%eventParam

--
Gitblit v1.8.0