From a4cc5ca09eb2b1ccbb40d7db4b45ded8195d0a98 Mon Sep 17 00:00:00 2001
From: hxp <ale99527@vip.qq.com>
Date: 星期三, 27 十一月 2019 16:19:16 +0800
Subject: [PATCH] 8346 【恺英】【后端】协助系统(协助表修改)
---
ServerPython/CoreServerGroup/GameServer/Script/PyGameDataStruct.py | 7 -------
1 files changed, 0 insertions(+), 7 deletions(-)
diff --git a/ServerPython/CoreServerGroup/GameServer/Script/PyGameDataStruct.py b/ServerPython/CoreServerGroup/GameServer/Script/PyGameDataStruct.py
index 1bad1e7..7859334 100644
--- a/ServerPython/CoreServerGroup/GameServer/Script/PyGameDataStruct.py
+++ b/ServerPython/CoreServerGroup/GameServer/Script/PyGameDataStruct.py
@@ -204,7 +204,6 @@
('Job', ctypes.c_ubyte),
('LV', ctypes.c_ushort),
('RealmLV', ctypes.c_ubyte),
- ('AssistType', ctypes.c_ubyte),
('MapID', ctypes.c_ulong),
('LineID', ctypes.c_ulong),
('NPCID', ctypes.c_ulong),
@@ -225,7 +224,6 @@
self.Job = 0
self.LV = 0
self.RealmLV = 0
- self.AssistType = 0
self.MapID = 0
self.LineID = 0
self.NPCID = 0
@@ -245,7 +243,6 @@
self.Job, pos = CommFunc.ReadBYTE(buf, pos)
self.LV, pos = CommFunc.ReadWORD(buf, pos)
self.RealmLV, pos = CommFunc.ReadBYTE(buf, pos)
- self.AssistType, pos = CommFunc.ReadBYTE(buf, pos)
self.MapID, pos = CommFunc.ReadDWORD(buf, pos)
self.LineID, pos = CommFunc.ReadDWORD(buf, pos)
self.NPCID, pos = CommFunc.ReadDWORD(buf, pos)
@@ -263,7 +260,6 @@
buf = CommFunc.WriteBYTE(buf, self.Job)
buf = CommFunc.WriteWORD(buf, self.LV)
buf = CommFunc.WriteBYTE(buf, self.RealmLV)
- buf = CommFunc.WriteBYTE(buf, self.AssistType)
buf = CommFunc.WriteDWORD(buf, self.MapID)
buf = CommFunc.WriteDWORD(buf, self.LineID)
buf = CommFunc.WriteDWORD(buf, self.NPCID)
@@ -279,7 +275,6 @@
length += sizeof(ctypes.c_char) * 33
length += sizeof(ctypes.c_ubyte)
length += sizeof(ctypes.c_ushort)
- length += sizeof(ctypes.c_ubyte)
length += sizeof(ctypes.c_ubyte)
length += sizeof(ctypes.c_ulong)
length += sizeof(ctypes.c_ulong)
@@ -297,7 +292,6 @@
Job = %s,
LV = %s,
RealmLV = %s,
- AssistType = %s,
MapID = %s,
LineID = %s,
NPCID = %s,
@@ -312,7 +306,6 @@
self.Job,
self.LV,
self.RealmLV,
- self.AssistType,
self.MapID,
self.LineID,
self.NPCID,
--
Gitblit v1.8.0