diff options
Diffstat (limited to 'src/net/eathena/pethandler.cpp')
-rw-r--r-- | src/net/eathena/pethandler.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/net/eathena/pethandler.cpp b/src/net/eathena/pethandler.cpp index 8daa34709..963ef0cc3 100644 --- a/src/net/eathena/pethandler.cpp +++ b/src/net/eathena/pethandler.cpp @@ -287,8 +287,12 @@ void PetHandler::processPetStatus(Net::MessageIn &msg) void PetHandler::processPetFood(Net::MessageIn &msg) { // +++ need show notification message about success or fail - msg.readUInt8("result"); + const int result = msg.readUInt8("result"); msg.readInt16("food id"); + if (result) + NotifyManager::notify(NotifyTypes::PET_FEED_OK); + else + NotifyManager::notify(NotifyTypes::PET_FEED_ERROR); } void PetHandler::requestStatus() const |