Fix clumsy defib debug assert (#23930)

* Fix clumsy defib debug assert

* don't need to specify null

(cherry picked from commit 25c477a64270aa5b2394ed5405c29a6882a78925)
This commit is contained in:
themias 2024-01-11 16:58:25 -05:00 committed by Debug
parent 2dbbd97720
commit fde8491664
No known key found for this signature in database
GPG Key ID: 271270A74EF9C350
1 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
using Content.Server.Atmos.Rotting;
using Content.Server.Atmos.Rotting;
using Content.Server.Chat.Systems;
using Content.Server.DoAfter;
using Content.Server.Electrocution;
@ -201,7 +201,7 @@ public sealed class DefibrillatorSystem : EntitySystem
// clowns zap themselves
if (HasComp<ClumsyComponent>(user) && user != target)
{
Zap(uid, user, user, component, mob, thresholds);
Zap(uid, user, user, component);
return;
}