]> git.smokeofanarchy.ru Git - space-station-14.git/commitdiff
Actually fix store action upgrades (#24960)
authorkeronshb <54602815+keronshb@users.noreply.github.com>
Mon, 5 Feb 2024 04:56:59 +0000 (23:56 -0500)
committerGitHub <noreply@github.com>
Mon, 5 Feb 2024 04:56:59 +0000 (15:56 +1100)
actual fix this time

Content.Shared/Store/ListingPrototype.cs

index 61721f2fb44d16a0a85eccaadc4e932d01e6e355..2f067afbeeba11249cd10e5bb95ae6a1f0bcd41e 100644 (file)
@@ -120,7 +120,6 @@ public partial class ListingData : IEquatable<ListingData>, 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<ListingData>, ICloneable
             ProductEntity = ProductEntity,
             ProductAction = ProductAction,
             ProductUpgradeID = ProductUpgradeID,
+            ProductActionEntity = ProductActionEntity,
             ProductEvent = ProductEvent,
             PurchaseAmount = PurchaseAmount,
             RestockTime = RestockTime,