From 69ab786b26f7804908ff69764f566424042ac8a3 Mon Sep 17 00:00:00 2001 From: xdh <xiefantasy@qq.com> Date: 星期二, 28 五月 2019 17:20:24 +0800 Subject: [PATCH] 6898 缥缈事件最大事件数量修改 --- ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/GM/Commands/AddFairyEvent.py | 3 +-- 1 files changed, 1 insertions(+), 2 deletions(-) diff --git a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/GM/Commands/AddFairyEvent.py b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/GM/Commands/AddFairyEvent.py index ed59550..c3b75c3 100644 --- a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/GM/Commands/AddFairyEvent.py +++ b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/GM/Commands/AddFairyEvent.py @@ -38,8 +38,7 @@ return fdEventIDList = msgList openServerDay = GameWorld.GetGameWorld().GetGameWorldDictByKey(ShareDefine.Def_Notify_WorldKey_ServerDay) + 1 - otherCntRateList = IpyGameDataPY.GetFuncEvalCfg('ImmortalDomain', 2) - maxEventCnt = max([info[1] for info in otherCntRateList]) + 1 #最大可出现事件个数 + maxEventCnt = PlayerFairyDomain.GetMaxEventCnt() #最大可出现事件个数 for i in xrange(maxEventCnt): prefdEventID = curPlayer.NomalDictGetProperty(ChConfig.Def_PDict_FairyDomainEventID % i) if prefdEventID: -- Gitblit v1.8.0