diff --git a/LemonUI/TimerBars/TimerBarObjective.cs b/LemonUI/TimerBars/TimerBarObjective.cs index 0072282..0ee79c7 100644 --- a/LemonUI/TimerBars/TimerBarObjective.cs +++ b/LemonUI/TimerBars/TimerBarObjective.cs @@ -44,9 +44,9 @@ public int Count return; } - if (value <= 0) + if (value < 0) { - throw new ArgumentOutOfRangeException(nameof(value), "The number of objectives can't be under or equal to zero."); + throw new ArgumentOutOfRangeException(nameof(value), "The number of objectives can't be under zero."); } count = value;