Browse Source

Use correct serialization

combat-2
MagicBot 8 months ago
parent
commit
b041326e23
  1. 2
      src/engine/net/client/msg/BuyFromNPCWindowMsg.java

2
src/engine/net/client/msg/BuyFromNPCWindowMsg.java

@ -149,7 +149,7 @@ public class BuyFromNPCWindowMsg extends ClientNetMsg { @@ -149,7 +149,7 @@ public class BuyFromNPCWindowMsg extends ClientNetMsg {
for (Item item : sellInventory) {
try {
Item.serializeForClientMsgForVendor(item, writer, sellPercent);
Item.serializeForClientMsgForVendorWithoutSlot(item, writer, sellPercent);
} catch (Exception se) {
continue;
}

Loading…
Cancel
Save