From 7a8cbd435f978f894c11ea41988e03fe883f4e64 Mon Sep 17 00:00:00 2001 From: Liza Carvelli Date: Thu, 28 Sep 2023 10:51:17 +0200 Subject: [PATCH] Add config note --- Deliveroo/Configuration.cs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Deliveroo/Configuration.cs b/Deliveroo/Configuration.cs index 31dd5af..57559a1 100644 --- a/Deliveroo/Configuration.cs +++ b/Deliveroo/Configuration.cs @@ -12,6 +12,12 @@ internal sealed class Configuration : IPluginConfiguration public List ItemsToPurchase { get; set; } = new(); public int ReservedSealCount { get; set; } = 0; + + /// + /// A config-only setting, not exposed in the UI. + /// + /// If set, buys all GC items in their max quantity (otherwise, everything except ventures is capped to 99). + /// public bool IgnoreCertainLimitations { get; set; } = false; internal sealed class PurchasePriority