ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChPyNetSendPack.py
@@ -24669,6 +24669,7 @@
                  ("Cmd", c_ubyte),
                  ("SubCmd", c_ubyte),
                  ("IsDouble", c_ubyte),    #是否双倍
                  ("OldDouble", c_ubyte),    #是否曾经允许双倍
                  ]
    def __init__(self):
@@ -24686,6 +24687,7 @@
        self.Cmd = 0xB2
        self.SubCmd = 0x01
        self.IsDouble = 0
        self.OldDouble = 0
        return
    def GetLength(self):
@@ -24698,12 +24700,14 @@
        DumpString = '''// B2 01 通知封魔坛双倍击杀状态 //tagMCFMTDoubleState:
                                Cmd:%s,
                                SubCmd:%s,
                                IsDouble:%d
                                IsDouble:%d,
                                OldDouble:%d
                                '''\
                                %(
                                self.Cmd,
                                self.SubCmd,
                                self.IsDouble
                                self.IsDouble,
                                self.OldDouble
                                )
        return DumpString