diff --git a/src/Components/Counters/ExtraCountersBar.tsx b/src/Components/Counters/ExtraCountersBar.tsx index 2d2da25..a420aea 100644 --- a/src/Components/Counters/ExtraCountersBar.tsx +++ b/src/Components/Counters/ExtraCountersBar.tsx @@ -51,6 +51,10 @@ const ExtraCountersBar = ({ updatedCounterTotal: number, type: CounterType ) => { + if (updatedCounterTotal < 0) { + return; + } + const existingCounter = player.extraCounters.find( (counter) => counter.type === type );