ServerPython/CoreServerGroup/GameServer/Script/GameWorld.py
@@ -303,14 +303,6 @@
    global GameWorldData
    return GameWorldData.GetBourseManager()
## 竞技场管理器
#  @param
#  @return HightLadderMgr
#  @remarks 函数详细说明.
def GetHightLadderMgr():
    global GameWorldData
    return GameWorldData.GetHighLadderManager()
## GM工具补偿管理器
#  @param 
#  @return HightLadderMgr
@@ -437,15 +429,19 @@
def GetPlatform():
    return ReadChConfig.GetPyMongoConfig("platform", "PlatformName")
##获得当前服务器ID
# @param 无
# @return
def GetServerID():
    return ToIntDef(GetServerSID()[1:], 0)
#===============================================================================
# ##获得当前服务器ID
# # @param 无
# # @return
# def GetServerID():
#    return ToIntDef(GetServerSID()[1:], 0)
#===============================================================================
def GetServerSID():
    ##获得当前服务器ID, 带s的
    return ReadChConfig.GetPyMongoConfig("platform", "ServerID")
#===============================================================================
# def GetServerSID():
#    ##获得当前服务器ID, 带s的
#    return ReadChConfig.GetPyMongoConfig("platform", "ServerID")
#===============================================================================
Def_AccID_Split_Sign = "@"
@@ -470,7 +466,7 @@
    mainServerID = ToIntDef(ReadChConfig.GetPyMongoConfig("platform", "%sMainServerID" % accIDPlatform), None)
    if mainServerID != None:
        return mainServerID
    return GetServerID()
    return 0
#===============================================================================