fix(big): remove assert in Sub to allow a retail bug

This commit is contained in:
Adam Heinermann 2024-11-15 04:33:17 -08:00 committed by superp00t
parent 04aae89252
commit 5e776b6db7

View file

@ -393,7 +393,8 @@ void Sub(BigBuffer& a, const BigBuffer& b, const BigBuffer& c) {
a.SetCount(i);
STORM_ASSERT(!borrow);
// This assert does not exist in retail WoW or Starcraft.
//STORM_ASSERT(!borrow);
}
void ToBinaryAppend(TSGrowableArray<uint8_t>& output, const BigBuffer& buffer) {