summaryrefslogtreecommitdiff
path: root/src/npc.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/npc.cpp')
-rw-r--r--src/npc.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/npc.cpp b/src/npc.cpp
index 980f1c8b..8e0b00a5 100644
--- a/src/npc.cpp
+++ b/src/npc.cpp
@@ -85,8 +85,8 @@ NPC::buy()
// XXX Convert for new server
/*
MessageOut outMsg(CMSG_NPC_BUY_SELL_REQUEST);
- outMsg.writeLong(mId);
- outMsg.writeByte(0);
+ outMsg.writeInt32(mId);
+ outMsg.writeInt8(0);
*/
}
@@ -96,7 +96,7 @@ NPC::sell()
// XXX Convert for new server
/*
MessageOut outMsg(CMSG_NPC_BUY_SELL_REQUEST);
- outMsg.writeLong(mId);
- outMsg.writeByte(1);
+ outMsg.writeInt32(mId);
+ outMsg.writeInt8(1);
*/
}