diff options
author | Jared Adams <jaxad0127@gmail.com> | 2009-03-31 15:11:26 -0600 |
---|---|---|
committer | Jared Adams <jaxad0127@gmail.com> | 2009-03-31 15:11:26 -0600 |
commit | 37432edac65a6b85c7a3414a421f2afd3e67a14e (patch) | |
tree | a4dc561371fab9d1800aec72960d7f86a1e88135 /src/gui/npcintegerdialog.cpp | |
parent | 2c5f308192d18b5447a5b0e2ee3428984c1f1b78 (diff) | |
download | mana-37432edac65a6b85c7a3414a421f2afd3e67a14e.tar.gz mana-37432edac65a6b85c7a3414a421f2afd3e67a14e.tar.bz2 mana-37432edac65a6b85c7a3414a421f2afd3e67a14e.tar.xz mana-37432edac65a6b85c7a3414a421f2afd3e67a14e.zip |
Add first draft of net handlers
eAthena NPC handler has been implemented and is being used for NPC
interraction.
Diffstat (limited to 'src/gui/npcintegerdialog.cpp')
-rw-r--r-- | src/gui/npcintegerdialog.cpp | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/src/gui/npcintegerdialog.cpp b/src/gui/npcintegerdialog.cpp index 4d2ae1ce..86dad4ab 100644 --- a/src/gui/npcintegerdialog.cpp +++ b/src/gui/npcintegerdialog.cpp @@ -28,9 +28,8 @@ #include "../npc.h" -#include "../net/messageout.h" #ifdef EATHENA_SUPPORT -#include "../net/ea/protocol.h" +#include "../net/ea/npchandler.h" #endif #include "../utils/gettext.h" @@ -119,10 +118,9 @@ void NpcIntegerDialog::action(const gcn::ActionEvent &event) setVisible(false); NPC::isTalking = false; + // Net::getNpcHandler()->integerInput(current_npc, mValueField->getValue()); #ifdef EATHENA_SUPPORT - MessageOut outMsg(CMSG_NPC_INT_RESPONSE); - outMsg.writeInt32(current_npc); - outMsg.writeInt32(mValueField->getValue()); + npcHandler->integerInput(current_npc, mValueField->getValue()); #endif mValueField->reset(); |