Skip to content

Commit

Permalink
Revert "Reapply "fix: prevent client debug when purchase/sale statist…
Browse files Browse the repository at this point in the history
…ics are missing (opentibiabr#2693)""

This reverts commit 873e8fb.
  • Loading branch information
lenangen94 committed Jun 19, 2024
1 parent 4fed28b commit b6390ff
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions src/server/network/protocol/protocolgame.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5857,8 +5857,6 @@ void ProtocolGame::sendMarketDetail(uint16_t itemId, uint8_t tier) {
msg.add<uint64_t>(purchaseStatistics.highestPrice);
msg.add<uint64_t>(purchaseStatistics.lowestPrice);
}
} else {
msg.addByte(0x00);
}
} else {
msg.addByte(0x00); // send to old protocol ?
Expand All @@ -5882,8 +5880,6 @@ void ProtocolGame::sendMarketDetail(uint16_t itemId, uint8_t tier) {
msg.add<uint64_t>(saleStatistics.highestPrice);
msg.add<uint64_t>(saleStatistics.lowestPrice);
}
} else {
msg.addByte(0x00);
}
} else {
msg.addByte(0x00); // send to old protocol ?
Expand Down

0 comments on commit b6390ff

Please sign in to comment.