diff options
author | Jared Adams <jaxad0127@gmail.com> | 2010-03-01 14:16:05 -0700 |
---|---|---|
committer | Jared Adams <jaxad0127@gmail.com> | 2010-03-01 14:16:05 -0700 |
commit | 3acb148b6d5fe3b342e4397e2c7de020de6005ff (patch) | |
tree | 8c16dd1af54d0a250ade6b4f28d7bfc90f1d5d59 /src/net/ea | |
parent | 452b02cb1b6e1675323d89e5f2c4946b2868a584 (diff) | |
download | mana-3acb148b6d5fe3b342e4397e2c7de020de6005ff.tar.gz mana-3acb148b6d5fe3b342e4397e2c7de020de6005ff.tar.bz2 mana-3acb148b6d5fe3b342e4397e2c7de020de6005ff.tar.xz mana-3acb148b6d5fe3b342e4397e2c7de020de6005ff.zip |
Stop processing for next/close with no dialog
Diffstat (limited to 'src/net/ea')
-rw-r--r-- | src/net/ea/npchandler.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/net/ea/npchandler.cpp b/src/net/ea/npchandler.cpp index 06a39045..dfd56cf1 100644 --- a/src/net/ea/npchandler.cpp +++ b/src/net/ea/npchandler.cpp @@ -72,10 +72,12 @@ void NpcHandler::handleMessage(Net::MessageIn &msg) if (msg.getId() == SMSG_NPC_CLOSE) { closeDialog(npcId); + return; } else if (msg.getId() == SMSG_NPC_NEXT) { nextDialog(npcId); + return; } else { |