ServerPython/CoreServerGroup/GameServer/Script/ChPyNetSendPack.py
@@ -16785,7 +16785,6 @@
    _fields_ = [
                  ("Cmd", c_ubyte),
                  ("SubCmd", c_ubyte),
                  ("UseBoxID", c_ubyte),    # 当前使用的气泡框ID
                  ("BoxState", c_int),    # 按二进制位存储代表是否已开启,暂支持31位,以后有需要再加
                  ]
@@ -16803,7 +16802,6 @@
    def Clear(self):
        self.Cmd = 0xA7
        self.SubCmd = 0x17
        self.UseBoxID = 0
        self.BoxState = 0
        return
@@ -16817,13 +16815,11 @@
        DumpString = '''// A7 17 聊天气泡框状态 //tagMCChatBubbleBoxState:
                                Cmd:%s,
                                SubCmd:%s,
                                UseBoxID:%d,
                                BoxState:%d
                                '''\
                                %(
                                self.Cmd,
                                self.SubCmd,
                                self.UseBoxID,
                                self.BoxState
                                )
        return DumpString