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:
@@ -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))
|
||||
|
||||
Reference in New Issue
Block a user