fix entity data packet type value

This commit is contained in:
Atlante45 2015-07-20 15:14:16 -07:00
parent 7578a70c4c
commit bca8d8181d

View file

@ -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 // NOTE: if you want the name of the packet packetType to be available for debugging or logging, update nameForPacketType() as well
namespace PacketType { namespace PacketType {
enum Value { enum Value {
Unknown, Unknown,
StunResponse, StunResponse,
DomainList, DomainList,
@ -62,18 +62,18 @@ namespace PacketType {
DomainConnectRequest, DomainConnectRequest,
DomainServerRequireDTLS, DomainServerRequireDTLS,
NodeJsonStats, NodeJsonStats,
EntityQuery,
EntityData,
EntityAdd,
EntityErase,
EntityEdit,
OctreeDataNack, OctreeDataNack,
StopNode, StopNode,
AudioEnvironment, AudioEnvironment,
EntityEditNack, EntityEditNack,
ICEServerHeartbeat, ICEServerHeartbeat,
ICEPing, ICEPing,
ICEPingReply ICEPingReply,
EntityData,
EntityQuery,
EntityAdd,
EntityErase,
EntityEdit
}; };
}; };