Fixed syndicate bombs being unpurchasable (#24469)

* fixed syndicite bombs being unpurchasable

* removed previous attempt

* added restock condition to listing's equal method

* reverted id change

(cherry picked from commit af632690a1619703da0b6158dee1b9eae7ae7c6d)
This commit is contained in:
emmafornash 2024-01-27 22:23:39 -05:00 committed by Debug
parent 8497ef8002
commit b301a9f4d0
No known key found for this signature in database
GPG Key ID: 271270A74EF9C350
1 changed files with 2 additions and 1 deletions

View File

@ -105,7 +105,8 @@ public partial class ListingData : IEquatable<ListingData>, ICloneable
Description != listing.Description ||
ProductEntity != listing.ProductEntity ||
ProductAction != listing.ProductAction ||
ProductEvent != listing.ProductEvent)
ProductEvent != listing.ProductEvent ||
RestockTime != listing.RestockTime)
return false;
if (Icon != null && !Icon.Equals(listing.Icon))