From d83f6c94031070ebc6b7ccd33addc669ac94775a Mon Sep 17 00:00:00 2001
From: xdh <xiefantasy@qq.com>
Date: 星期五, 19 十月 2018 11:58:21 +0800
Subject: [PATCH] 2180 【主干】【1.1.0】【1.0.18】单人进入渡劫副本没有刷怪
---
ServerPython/CoreServerGroup/GameServer/Script/GM/Commands/Bossall.py | 3 +++
1 files changed, 3 insertions(+), 0 deletions(-)
diff --git a/ServerPython/CoreServerGroup/GameServer/Script/GM/Commands/Bossall.py b/ServerPython/CoreServerGroup/GameServer/Script/GM/Commands/Bossall.py
index 8aa769a..952cf26 100644
--- a/ServerPython/CoreServerGroup/GameServer/Script/GM/Commands/Bossall.py
+++ b/ServerPython/CoreServerGroup/GameServer/Script/GM/Commands/Bossall.py
@@ -17,6 +17,7 @@
import PyGameData
import GameWorldBoss
import GameWorld
+import time
## 执行逻辑
# @param curPlayer 当前玩家
@@ -33,6 +34,8 @@
killedTime = 0
PyGameData.g_sortBOSSRefreshList[i] = [bossID, killedTime, refreshTime]
bossIDList.append(bossID)
+ curTime = int(time.time())
+ PyGameData.g_sortBOSSRefreshList.sort(key=lambda asd:max(0, asd[2] - (curTime - asd[1])))
GameWorld.DebugAnswer(curPlayer, "重生boss:%s" % bossIDList)
return
--
Gitblit v1.8.0