diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-03-10 18:16:53 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-03-10 18:16:53 +0300 |
commit | 3b25ab9075318c52271307eefdc616a671657ee3 (patch) | |
tree | 4aacad354f935ff2baaecdcfa25e41dc0dfd041c /src/net | |
parent | f579c3eac923ff3eb7c0eb7c5c03a5dab0c1ca48 (diff) | |
download | plus-3b25ab9075318c52271307eefdc616a671657ee3.tar.gz plus-3b25ab9075318c52271307eefdc616a671657ee3.tar.bz2 plus-3b25ab9075318c52271307eefdc616a671657ee3.tar.xz plus-3b25ab9075318c52271307eefdc616a671657ee3.zip |
Add comments about some not implimented packets and remove them from reporting.
Diffstat (limited to 'src/net')
-rw-r--r-- | src/net/eathena/partyhandler.cpp | 2 | ||||
-rw-r--r-- | src/net/eathena/playerhandler.cpp | 5 |
2 files changed, 4 insertions, 3 deletions
diff --git a/src/net/eathena/partyhandler.cpp b/src/net/eathena/partyhandler.cpp index 7a2d3c2b0..dd654f616 100644 --- a/src/net/eathena/partyhandler.cpp +++ b/src/net/eathena/partyhandler.cpp @@ -222,7 +222,7 @@ void PartyHandler::setShareItems(const Net::PartyShare::Type share) const void PartyHandler::processPartyInvitationStats(Net::MessageIn &msg) { - UNIMPLIMENTEDPACKET; + // +++ for now server allow only switch this option but not using it. msg.readUInt8("allow party"); } diff --git a/src/net/eathena/playerhandler.cpp b/src/net/eathena/playerhandler.cpp index b5605ea79..85c3cfd93 100644 --- a/src/net/eathena/playerhandler.cpp +++ b/src/net/eathena/playerhandler.cpp @@ -295,7 +295,8 @@ void PlayerHandler::setMemo() const void PlayerHandler::processPlayerShortcuts(Net::MessageIn &msg) { - UNIMPLIMENTEDPACKET; + // +++ player shortcuts ignored. It also disabled on server side. + // may be in future better use it? msg.readUInt8("unused?"); for (int f = 0; f < 27; f ++) { @@ -308,7 +309,7 @@ void PlayerHandler::processPlayerShortcuts(Net::MessageIn &msg) void PlayerHandler::processPlayerShowEquip(Net::MessageIn &msg) { - UNIMPLIMENTEDPACKET; + // +++ for now server allow only switch this option but not using it. msg.readUInt8("show equip"); // 1 mean need open "equipment" window } |