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
This commit is contained in:
emmafornash
2024-01-27 22:23:39 -05:00
committed by GitHub
parent 5c75117749
commit af632690a1

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))