diff options
-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 } |