diff --git a/Content.Server/_Sunrise/DontSellingGrid/DontSellingGridSystems.cs b/Content.Server/_Sunrise/DontSellingGrid/DontSellingGridSystems.cs index d6efab9964..546121db80 100644 --- a/Content.Server/_Sunrise/DontSellingGrid/DontSellingGridSystems.cs +++ b/Content.Server/_Sunrise/DontSellingGrid/DontSellingGridSystems.cs @@ -9,7 +9,6 @@ namespace Content.Server._Sunrise.DontSellingGrid; public sealed class StationDontSellingSystems : EntitySystem { [Dependency] private readonly EntityLookupSystem _lookup = default!; - private EntityQuery _priseQuery; public override void Initialize() { @@ -18,8 +17,6 @@ public sealed class StationDontSellingSystems : EntitySystem SubscribeLocalEvent(OnPostInit); SubscribeLocalEvent(OnPlayerSpawning); SubscribeLocalEvent(OnCalculatePrice); - - _priseQuery = GetEntityQuery(); } private void OnCalculatePrice(EntityUid uid, DontSellComponent component, ref PriceCalculationEvent args)