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:
parent
2dbbd97720
commit
fde8491664
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue