mirror of
https://github.com/overte-org/overte.git
synced 2025-04-20 01:43:53 +02:00
fix entity data packet type value
This commit is contained in:
parent
7578a70c4c
commit
bca8d8181d
1 changed files with 7 additions and 7 deletions
|
@ -27,7 +27,7 @@
|
|||
// NOTE: if you want the name of the packet packetType to be available for debugging or logging, update nameForPacketType() as well
|
||||
|
||||
namespace PacketType {
|
||||
enum Value {
|
||||
enum Value {
|
||||
Unknown,
|
||||
StunResponse,
|
||||
DomainList,
|
||||
|
@ -62,18 +62,18 @@ namespace PacketType {
|
|||
DomainConnectRequest,
|
||||
DomainServerRequireDTLS,
|
||||
NodeJsonStats,
|
||||
EntityQuery,
|
||||
EntityData,
|
||||
EntityAdd,
|
||||
EntityErase,
|
||||
EntityEdit,
|
||||
OctreeDataNack,
|
||||
StopNode,
|
||||
AudioEnvironment,
|
||||
EntityEditNack,
|
||||
ICEServerHeartbeat,
|
||||
ICEPing,
|
||||
ICEPingReply
|
||||
ICEPingReply,
|
||||
EntityData,
|
||||
EntityQuery,
|
||||
EntityAdd,
|
||||
EntityErase,
|
||||
EntityEdit
|
||||
};
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue