diff options
Diffstat (limited to 'src/gui/buysell.cpp')
-rw-r--r-- | src/gui/buysell.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gui/buysell.cpp b/src/gui/buysell.cpp index 1f40e7b5..627d119f 100644 --- a/src/gui/buysell.cpp +++ b/src/gui/buysell.cpp @@ -82,9 +82,9 @@ void BuySellDialog::action(const std::string& eventId) } if (actionId > -1) { MessageOut outMsg; - outMsg.writeShort(CMSG_NPC_BUY_SELL_REQUEST); - outMsg.writeLong(current_npc); - outMsg.writeByte(actionId); + outMsg.writeInt16(CMSG_NPC_BUY_SELL_REQUEST); + outMsg.writeInt32(current_npc); + outMsg.writeInt8(actionId); } setVisible(false); |