summaryrefslogtreecommitdiff
path: root/src/net/eathena/npchandler.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2015-03-17 23:33:37 +0300
committerAndrei Karas <akaras@inbox.ru>2015-03-17 23:33:37 +0300
commit1b43cc5755ca5157f56b4222c2fc05e608d0fe93 (patch)
tree340234d377788640caa9914843470feb2e92ddfc /src/net/eathena/npchandler.cpp
parentf406fe1a4c6abf9b414fc9110cef80e217cafb62 (diff)
downloadplus-1b43cc5755ca5157f56b4222c2fc05e608d0fe93.tar.gz
plus-1b43cc5755ca5157f56b4222c2fc05e608d0fe93.tar.bz2
plus-1b43cc5755ca5157f56b4222c2fc05e608d0fe93.tar.xz
plus-1b43cc5755ca5157f56b4222c2fc05e608d0fe93.zip
eathena: add partial support for packet SMSG_NPC_PROGRESS_BAR_ABORT 0x02f2.
Diffstat (limited to 'src/net/eathena/npchandler.cpp')
-rw-r--r--src/net/eathena/npchandler.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/net/eathena/npchandler.cpp b/src/net/eathena/npchandler.cpp
index b7bd51844..e5ff89cfb 100644
--- a/src/net/eathena/npchandler.cpp
+++ b/src/net/eathena/npchandler.cpp
@@ -60,6 +60,7 @@ NpcHandler::NpcHandler() :
SMSG_NPC_CHANGETITLE,
SMSG_NPC_AREA,
SMSG_NPC_SHOW_DIGIT,
+ SMSG_NPC_PROGRESS_BAR_ABORT,
0
};
handledMessages = _messages;
@@ -126,6 +127,10 @@ void NpcHandler::handleMessage(Net::MessageIn &msg)
processShowDigit(msg);
break;
+ case SMSG_NPC_PROGRESS_BAR_ABORT:
+ processProgressBarAbort(msg);
+ break;
+
default:
break;
}
@@ -387,4 +392,9 @@ void NpcHandler::processShowDigit(Net::MessageIn &msg)
msg.readInt32("value");
}
+void NpcHandler::processProgressBarAbort(Net::MessageIn &msg)
+{
+ UNIMPLIMENTEDPACKET;
+}
+
} // namespace EAthena