From 8b266cdab8981e11e6b3b7cf19a6b816f933b613 Mon Sep 17 00:00:00 2001
From: hxp <ale99527@vip.qq.com>
Date: 星期一, 02 九月 2024 18:22:06 +0800
Subject: [PATCH] 10241 【越南】【砍树】【主干】【港台】古宝养成(增加古宝养成积分货币46;增加古宝养成战令8;)

---
 ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerZhanling.py |    6 +++++-
 1 files changed, 5 insertions(+), 1 deletions(-)

diff --git a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerZhanling.py b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerZhanling.py
index b9f3c00..4e4c966 100644
--- a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerZhanling.py
+++ b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerZhanling.py
@@ -22,6 +22,7 @@
 import ChPyNetSendPack
 import PlayerGatherTheSoul
 import PlayerActHorsePetTrain
+import PlayerActGubao
 import ItemControler
 import IPY_GameWorld
 import PlayerGubao
@@ -37,7 +38,8 @@
 ZhanlingType_Login,
 ZhanlingType_GatherTheSoulLV,
 ZhanlingType_HorsePetTrain,
-) = range(1, 1 + 7)
+ZhanlingType_GubaoTrain,
+) = range(1, 1 + 8)
 
 def OnPlayerLogin(curPlayer):
     for zhanlingType in ZhanlingTypeList:
@@ -180,6 +182,8 @@
         curValue = PlayerGatherTheSoul.GetGatherTheSoulTotalLV(curPlayer)
     elif zhanlingType == ZhanlingType_HorsePetTrain:
         curValue = PlayerActHorsePetTrain.GetActHorsePetTrainScore(curPlayer)
+    elif zhanlingType == ZhanlingType_GubaoTrain:
+        curValue = PlayerActGubao.GetActGubaoTrainScore(curPlayer)
     else:
         return
         

--
Gitblit v1.8.0