From: keronshb <54602815+keronshb@users.noreply.github.com> Date: Mon, 5 Feb 2024 04:56:59 +0000 (-0500) Subject: Actually fix store action upgrades (#24960) X-Git-Url: https://git.smokeofanarchy.ru/gitweb.cgi?a=commitdiff_plain;h=b88a8f0bb2a4e1c9dca39bf0778aa3c6c947702f;p=space-station-14.git Actually fix store action upgrades (#24960) actual fix this time --- 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,