From 54b3ca452de08e8cf5723a0715cc0c3853c2df3a Mon Sep 17 00:00:00 2001 From: hxp <ale99527@vip.qq.com> Date: 星期六, 01 十二月 2018 16:35:48 +0800 Subject: [PATCH] 2549 【BUG】【1.3】玩家登录时过天处理离线期间所获得的助战仙缘币异常 --- ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerControl.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerControl.py b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerControl.py index e0a2d48..da6762a 100644 --- a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerControl.py +++ b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerControl.py @@ -5716,7 +5716,7 @@ ## 玩家今日已获得仙缘币 def GetTodayXianyuanCoin(curPlayer): return curPlayer.GetExAttr11() -def SetTodayXianyuanCoin(curPlayer, value): return curPlayer.SetExAttr11(value) +def SetTodayXianyuanCoin(curPlayer, value): return curPlayer.SetExAttr11(value, False, True) def AddTodayXianyuanCoin(curPlayer, addValue): return curPlayer.SetExAttr11(curPlayer.GetExAttr11() + addValue, False, True) ##VIP到期时间, 需要同步GameServer -- Gitblit v1.8.0