From af632690a1619703da0b6158dee1b9eae7ae7c6d Mon Sep 17 00:00:00 2001 From: emmafornash <89596994+emmafornash@users.noreply.github.com> Date: Sat, 27 Jan 2024 22:23:39 -0500 Subject: [PATCH] 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 --- Content.Shared/Store/ListingPrototype.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Content.Shared/Store/ListingPrototype.cs b/Content.Shared/Store/ListingPrototype.cs index d80c5cf6c8..b0f72e6dfe 100644 --- a/Content.Shared/Store/ListingPrototype.cs +++ b/Content.Shared/Store/ListingPrototype.cs @@ -105,7 +105,8 @@ public partial class ListingData : IEquatable, 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)) -- 2.52.0