mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-03-01 09:39:41 +00:00
[General] Use placeholder packet ID for unused CellCreate packet
This commit is contained in:
parent
ca67587b89
commit
25e27ccb95
3 changed files with 4 additions and 3 deletions
|
@ -10,7 +10,7 @@ namespace mwmp
|
|||
public:
|
||||
ProcessorCellCreate()
|
||||
{
|
||||
BPP_INIT(ID_CELL_CREATE)
|
||||
BPP_INIT(ID_PLACEHOLDER)
|
||||
}
|
||||
|
||||
virtual void Do(WorldstatePacket &packet, Worldstate &worldstate)
|
||||
|
|
|
@ -108,7 +108,8 @@ enum GameMessages
|
|||
ID_WORLD_WEATHER,
|
||||
|
||||
ID_PLAYER_ITEM_USE,
|
||||
ID_PLAYER_CAST
|
||||
ID_PLAYER_CAST,
|
||||
ID_PLACEHOLDER
|
||||
};
|
||||
|
||||
enum OrderingChannel
|
||||
|
|
|
@ -5,7 +5,7 @@ using namespace mwmp;
|
|||
|
||||
PacketCellCreate::PacketCellCreate(RakNet::RakPeerInterface *peer) : WorldstatePacket(peer)
|
||||
{
|
||||
packetID = ID_CELL_CREATE;
|
||||
packetID = ID_PLACEHOLDER;
|
||||
orderChannel = CHANNEL_SYSTEM;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue