From b54de4b8fce633b9ab6318f8cff651424c53c35b Mon Sep 17 00:00:00 2001 From: 0x6273 <0x40@keemail.me> Date: Tue, 6 Sep 2022 17:10:07 +0200 Subject: [PATCH] Fix insulated gloves (#11079) --- Content.Shared/Electrocution/ElectrocutionEvents.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Shared/Electrocution/ElectrocutionEvents.cs b/Content.Shared/Electrocution/ElectrocutionEvents.cs index b7dafad1fd..fe5753c7fb 100644 --- a/Content.Shared/Electrocution/ElectrocutionEvents.cs +++ b/Content.Shared/Electrocution/ElectrocutionEvents.cs @@ -13,7 +13,7 @@ namespace Content.Shared.Electrocution public ElectrocutionAttemptEvent(EntityUid targetUid, EntityUid? sourceUid, float siemensCoefficient, SlotFlags targetSlots) { TargetUid = targetUid; - TargetSlots = TargetSlots; + TargetSlots = targetSlots; SourceUid = sourceUid; SiemensCoefficient = siemensCoefficient; }