diff options
Diffstat (limited to 'src/net/tmwa/npchandler.cpp')
-rw-r--r-- | src/net/tmwa/npchandler.cpp | 17 |
1 files changed, 3 insertions, 14 deletions
diff --git a/src/net/tmwa/npchandler.cpp b/src/net/tmwa/npchandler.cpp index 61a4cf188..efabfff2e 100644 --- a/src/net/tmwa/npchandler.cpp +++ b/src/net/tmwa/npchandler.cpp @@ -184,20 +184,9 @@ void NpcHandler::buyItem(const BeingId beingId A_UNUSED, const int amount) const { createOutPacket(CMSG_NPC_BUY_REQUEST); - if (serverFeatures->haveItemColors()) - { - outMsg.writeInt16(10, "len"); - outMsg.writeInt16(static_cast<int16_t>(amount), "amount"); - outMsg.writeInt16(static_cast<int16_t>(itemId), "item id"); - outMsg.writeInt8(color, "color"); - outMsg.writeInt8(0, "unused"); - } - else - { - outMsg.writeInt16(8, "len"); - outMsg.writeInt16(static_cast<int16_t>(amount), "amount"); - outMsg.writeInt16(static_cast<int16_t>(itemId), "item id"); - } + outMsg.writeInt16(8, "len"); + outMsg.writeInt16(static_cast<int16_t>(amount), "amount"); + outMsg.writeInt16(static_cast<int16_t>(itemId), "item id"); } void NpcHandler::sellItem(const BeingId beingId A_UNUSED, |