From a7d7e5fc4c17ab455ce3a5118fb0c529241454f1 Mon Sep 17 00:00:00 2001
From: hxp <ale99527@vip.qq.com>
Date: 星期三, 20 一月 2021 11:07:34 +0800
Subject: [PATCH] 8701 【主干】【后端】活动相关的充值界面显示优化(跨服充值排行活动支持分);

---
 ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/IpyGameDataPY.py |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/IpyGameDataPY.py b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/IpyGameDataPY.py
index 3677297..eed5e8a 100644
--- a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/IpyGameDataPY.py
+++ b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/IpyGameDataPY.py
@@ -1507,7 +1507,7 @@
 
                 "CrossActCTGBillboardDabiao":(
                         ("DWORD", "TemplateID", 1),
-                        ("DWORD", "CTGNeed", 0),
+                        ("float", "CTGNeed", 0),
                         ("BYTE", "AwardIndex", 0),
                         ("list", "AwardItemList", 0),
                         ),
@@ -1516,7 +1516,7 @@
                         ("DWORD", "TemplateID", 1),
                         ("WORD", "OrderA", 0),
                         ("WORD", "OrderB", 0),
-                        ("DWORD", "CTGAtleast", 0),
+                        ("float", "CTGAtleast", 0),
                         ("list", "AwardItemList", 0),
                         ),
 
@@ -4784,7 +4784,7 @@
     
     def __init__(self):
         self.TemplateID = 0
-        self.CTGNeed = 0
+        self.CTGNeed = 0.0
         self.AwardIndex = 0
         self.AwardItemList = []
         return
@@ -4801,7 +4801,7 @@
         self.TemplateID = 0
         self.OrderA = 0
         self.OrderB = 0
-        self.CTGAtleast = 0
+        self.CTGAtleast = 0.0
         self.AwardItemList = []
         return
         

--
Gitblit v1.8.0