diff --git a/Content.Server/GameObjects/Components/Instruments/InstrumentComponent.cs b/Content.Server/GameObjects/Components/Instruments/InstrumentComponent.cs index a23ae7e2b8..376ce82945 100644 --- a/Content.Server/GameObjects/Components/Instruments/InstrumentComponent.cs +++ b/Content.Server/GameObjects/Components/Instruments/InstrumentComponent.cs @@ -118,7 +118,6 @@ namespace Content.Server.GameObjects.Components.Instruments break; case InstrumentStartMidiMessage startMidi: Playing = true; - _batchesDropped = 0; break; case InstrumentStopMidiMessage stopMidi: Playing = false; @@ -202,6 +201,7 @@ namespace Content.Server.GameObjects.Components.Instruments if (_batchesDropped > MaxMidiBatchDropped && _instrumentPlayer != null) { + _batchesDropped = 0; var mob = _instrumentPlayer.AttachedEntity; if (mob.TryGetComponent(out StunnableComponent stun)) stun.Stun(1);