diff options
Diffstat (limited to 'src/net/eathena/playerhandler.cpp')
-rw-r--r-- | src/net/eathena/playerhandler.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/net/eathena/playerhandler.cpp b/src/net/eathena/playerhandler.cpp index 77ad01e19..35759bfd6 100644 --- a/src/net/eathena/playerhandler.cpp +++ b/src/net/eathena/playerhandler.cpp @@ -330,10 +330,10 @@ void PlayerHandler::processPlayerStatUpdate5(Net::MessageIn &msg) void PlayerHandler::processPlayerGetExp(Net::MessageIn &msg) { - const int id = msg.readInt32("player id"); - const int exp = msg.readInt32("exp amount"); - const int type = msg.readInt16("exp type"); - const int isQuest = msg.readInt16("is from quest"); + msg.readInt32("player id"); + msg.readInt32("exp amount"); + msg.readInt16("exp type"); + msg.readInt16("is from quest"); // Being *dstBeing = actorManager->findBeing(id); // need show particle depend on isQuest flag, for now ignored } |