diff options
author | Jared Adams <jaxad0127@gmail.com> | 2009-03-26 09:55:20 -0600 |
---|---|---|
committer | Jared Adams <jaxad0127@gmail.com> | 2009-03-26 09:55:20 -0600 |
commit | 44abf0cf80bee24f951856e9a68ccb90039e7413 (patch) | |
tree | 0b0ef6d6f7d99b320c05c9fc4aa6f8888e0899b5 /src | |
parent | 9e4a8ea095a1a0613d7b128f4e29c69643137b07 (diff) | |
download | mana-client-44abf0cf80bee24f951856e9a68ccb90039e7413.tar.gz mana-client-44abf0cf80bee24f951856e9a68ccb90039e7413.tar.bz2 mana-client-44abf0cf80bee24f951856e9a68ccb90039e7413.tar.xz mana-client-44abf0cf80bee24f951856e9a68ccb90039e7413.zip |
Fix talking to NPCs
Diffstat (limited to 'src')
-rw-r--r-- | src/npc.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/npc.cpp b/src/npc.cpp index df43d548..d0a1a523 100644 --- a/src/npc.cpp +++ b/src/npc.cpp @@ -132,7 +132,7 @@ void NPC::talk() MessageOut outMsg(mNetwork); outMsg.writeInt16(CMSG_NPC_TALK); - outMsg.writeInt16(CMSG_NPC_TALK); + //outMsg.writeInt16(CMSG_NPC_TALK); outMsg.writeInt32(mId); outMsg.writeInt8(0); #endif |