Skip to content

Commit

Permalink
Actually fix store action upgrades (space-wizards#24960)
Browse files Browse the repository at this point in the history
actual fix this time
  • Loading branch information
keronshb authored Feb 5, 2024
1 parent e79d2b5 commit b88a8f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Content.Shared/Store/ListingPrototype.cs
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,6 @@ public bool Equals(ListingData? listing)
Description != listing.Description ||
ProductEntity != listing.ProductEntity ||
ProductAction != listing.ProductAction ||
ProductActionEntity != listing.ProductActionEntity ||
ProductEvent != listing.ProductEvent ||
RestockTime != listing.RestockTime)
return false;
Expand Down Expand Up @@ -163,6 +162,7 @@ public object Clone()
ProductEntity = ProductEntity,
ProductAction = ProductAction,
ProductUpgradeID = ProductUpgradeID,
ProductActionEntity = ProductActionEntity,
ProductEvent = ProductEvent,
PurchaseAmount = PurchaseAmount,
RestockTime = RestockTime,
Expand Down

0 comments on commit b88a8f0

Please sign in to comment.