From b88a8f0bb2a4e1c9dca39bf0778aa3c6c947702f Mon Sep 17 00:00:00 2001 From: keronshb <54602815+keronshb@users.noreply.github.com> Date: Sun, 4 Feb 2024 23:56:59 -0500 Subject: [PATCH] Actually fix store action upgrades (#24960) actual fix this time --- Content.Shared/Store/ListingPrototype.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Shared/Store/ListingPrototype.cs b/Content.Shared/Store/ListingPrototype.cs index 61721f2fb4..2f067afbee 100644 --- a/Content.Shared/Store/ListingPrototype.cs +++ b/Content.Shared/Store/ListingPrototype.cs @@ -120,7 +120,6 @@ public partial class ListingData : IEquatable, ICloneable Description != listing.Description || ProductEntity != listing.ProductEntity || ProductAction != listing.ProductAction || - ProductActionEntity != listing.ProductActionEntity || ProductEvent != listing.ProductEvent || RestockTime != listing.RestockTime) return false; @@ -163,6 +162,7 @@ public partial class ListingData : IEquatable, ICloneable ProductEntity = ProductEntity, ProductAction = ProductAction, ProductUpgradeID = ProductUpgradeID, + ProductActionEntity = ProductActionEntity, ProductEvent = ProductEvent, PurchaseAmount = PurchaseAmount, RestockTime = RestockTime, -- 2.51.2