From 8d824368fd3d1d358c166ad23dbda95bc9ab4454 Mon Sep 17 00:00:00 2001
From: hxp <ale99527@vip.qq.com>
Date: 星期三, 04 九月 2024 11:41:46 +0800
Subject: [PATCH] 10258 【越南】【砍树】新增古宝特殊效果(增加法器每X阶+xx属性)
---
ServerPython/CoreServerGroup/GameServer/Script/Player/PlayerRequest.py | 4 +++-
1 files changed, 3 insertions(+), 1 deletions(-)
diff --git a/ServerPython/CoreServerGroup/GameServer/Script/Player/PlayerRequest.py b/ServerPython/CoreServerGroup/GameServer/Script/Player/PlayerRequest.py
index d37a6ec..f0db17a 100644
--- a/ServerPython/CoreServerGroup/GameServer/Script/Player/PlayerRequest.py
+++ b/ServerPython/CoreServerGroup/GameServer/Script/Player/PlayerRequest.py
@@ -115,7 +115,8 @@
PyGameData.g_playerRequests[curTagPlayerID][(curPlayer.GetID(), requestType)] = [curPlayer.GetName(),
curPlayer.GetLV(),
- curPlayer.GetOfficialRank()]
+ curPlayer.GetOfficialRank(),
+ curPlayer.GetFace()]
return
@@ -157,6 +158,7 @@
askFriendPack.Name = playerInfo[0]
askFriendPack.LV = playerInfo[1]
askFriendPack.RealmLV = playerInfo[2]
+ askFriendPack.Face = playerInfo[3]
NetPackCommon.SendFakePack(curPlayer, askFriendPack)
return
--
Gitblit v1.8.0