From 69a763fb7cdb30bd5f7a860e4fd4a9270adb23b9 Mon Sep 17 00:00:00 2001
From: xdh <xiefantasy@qq.com>
Date: 星期四, 09 五月 2019 20:41:56 +0800
Subject: [PATCH] 6628 查看玩家 技能总等级信息

---
 ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/GameWorldLogic/FBProcess/GameLogic_SkyTower.py |    6 ++----
 1 files changed, 2 insertions(+), 4 deletions(-)

diff --git a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/GameWorldLogic/FBProcess/GameLogic_SkyTower.py b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/GameWorldLogic/FBProcess/GameLogic_SkyTower.py
index 8462085..c063bfe 100644
--- a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/GameWorldLogic/FBProcess/GameLogic_SkyTower.py
+++ b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/GameWorldLogic/FBProcess/GameLogic_SkyTower.py
@@ -63,7 +63,7 @@
 def GetTowerIpyData(floor):
     return IpyGameDataPY.GetIpyGameData('SkyTower', floor)
 
-def OnFBPlayerLogin(curPlayer):
+def OnFBPlayerOnLogin(curPlayer):
     SyncSkyTowerInfo(curPlayer)
     return
 
@@ -73,7 +73,7 @@
 def SyncSkyTowerInfo(curPlayer):
     ttInfo = ChPyNetSendPack.tagMCSkyTowerInfo()
     ttInfo.Clear()
-    ttInfo.floorID = __GetSkyTowerCurFloor(curPlayer)
+    ttInfo.Floor = __GetSkyTowerCurFloor(curPlayer)
     NetPackCommon.SendFakePack(curPlayer, ttInfo)
     return
 
@@ -325,8 +325,6 @@
     
     SyncSkyTowerInfo(curPlayer) # 同步最新关卡信息
     __SetFBToFreeTime(tick)
-    #每日任务
-    PlayerActivity.AddDailyActionFinishCnt(curPlayer, ShareDefine.DailyActionID_Tower)
     return
 
 

--
Gitblit v1.8.0