mirror of
https://github.com/SapphireServer/Sapphire.git
synced 2025-04-26 14:37:44 +00:00
Add chat restricted packet def
This commit is contained in:
parent
9739b92c46
commit
6ffb9e90d5
2 changed files with 8 additions and 2 deletions
|
@ -47,7 +47,7 @@ namespace Packets {
|
||||||
Ping = 0x0065, // updated for sb
|
Ping = 0x0065, // updated for sb
|
||||||
Init = 0x0066, // updated for sb
|
Init = 0x0066, // updated for sb
|
||||||
Chat = 0x0067, // updated for sb
|
Chat = 0x0067, // updated for sb
|
||||||
|
ChatBanned = 0x006B,
|
||||||
Logout = 0x0077, // updated for sb
|
Logout = 0x0077, // updated for sb
|
||||||
CFNotify = 0x0078,
|
CFNotify = 0x0078,
|
||||||
CFMemberStatus = 0x0079,
|
CFMemberStatus = 0x0079,
|
||||||
|
|
|
@ -48,6 +48,12 @@ struct FFXIVIpcChat : FFXIVIpcBasePacket<Chat>
|
||||||
char msg[1012];
|
char msg[1012];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
struct FFXIVIpcChatBanned : FFXIVIpcBasePacket<ChatBanned>
|
||||||
|
{
|
||||||
|
uint8_t padding[4]; // I was not sure reinterpreting ZST is valid behavior in C++.
|
||||||
|
// client doesn't care about the data (zero sized) for this opcode anyway.
|
||||||
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Structural representation of the packet sent by the server
|
* Structural representation of the packet sent by the server
|
||||||
* carrying chat messages
|
* carrying chat messages
|
||||||
|
|
Loading…
Add table
Reference in a new issue