diff --git a/Subsurface/Source/Items/Components/Power/PowerTransfer.cs b/Subsurface/Source/Items/Components/Power/PowerTransfer.cs index e8bae85b8..9fa4d9b2c 100644 --- a/Subsurface/Source/Items/Components/Power/PowerTransfer.cs +++ b/Subsurface/Source/Items/Components/Power/PowerTransfer.cs @@ -125,6 +125,8 @@ namespace Barotrauma.Items.Components Item it = recipient.Item; if (it == null) continue; + if (it.Condition <= 0.0f) continue; + Powered powered = it.GetComponent(); if (powered == null || !powered.IsActive) continue;