From d279595ca904135621e793008e43189f028acf71 Mon Sep 17 00:00:00 2001 From: hxp <ale99527@vip.qq.com> Date: 星期五, 02 十一月 2018 14:34:11 +0800 Subject: [PATCH] 4399 【后端】【1.2.0】气泡框聊天信息相关封包支持附加使用的气泡框ID; --- ServerPython/CoreServerGroup/GameServer/Script/ChPyNetSendPack.py | 4 ---- 1 files changed, 0 insertions(+), 4 deletions(-) diff --git a/ServerPython/CoreServerGroup/GameServer/Script/ChPyNetSendPack.py b/ServerPython/CoreServerGroup/GameServer/Script/ChPyNetSendPack.py index 7cb7891..ddf5afc 100644 --- a/ServerPython/CoreServerGroup/GameServer/Script/ChPyNetSendPack.py +++ b/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 -- Gitblit v1.8.0