diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-06-24 01:15:01 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-06-24 01:15:01 +0300 |
commit | 39b049572ef0a734d3a6bd2a3def04c100f606df (patch) | |
tree | fc8eacfd9fd22930890ebe2849bd134a4f282557 /src/net/tmwa/beinghandler.cpp | |
parent | 23ae275efc756f4c75146c741d1f5bd5be315368 (diff) | |
download | plus-39b049572ef0a734d3a6bd2a3def04c100f606df.tar.gz plus-39b049572ef0a734d3a6bd2a3def04c100f606df.tar.bz2 plus-39b049572ef0a734d3a6bd2a3def04c100f606df.tar.xz plus-39b049572ef0a734d3a6bd2a3def04c100f606df.zip |
Add name request packet into protocol.h
Diffstat (limited to 'src/net/tmwa/beinghandler.cpp')
-rw-r--r-- | src/net/tmwa/beinghandler.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/net/tmwa/beinghandler.cpp b/src/net/tmwa/beinghandler.cpp index 53ca71aca..cf2c50bf7 100644 --- a/src/net/tmwa/beinghandler.cpp +++ b/src/net/tmwa/beinghandler.cpp @@ -95,7 +95,7 @@ BeingHandler::BeingHandler(const bool enableSync) : void BeingHandler::requestNameById(const int id) const { - MessageOut outMsg(0x0094); + MessageOut outMsg(CMSG_NAME_REQUEST); outMsg.writeInt32(id); // readLong(2)); } |