diff --git a/Content.Server/PowerCell/PowerCellSystem.cs b/Content.Server/PowerCell/PowerCellSystem.cs index e636575a4a..ed319f2b2f 100644 --- a/Content.Server/PowerCell/PowerCellSystem.cs +++ b/Content.Server/PowerCell/PowerCellSystem.cs @@ -44,6 +44,9 @@ public sealed class PowerCellSystem : SharedPowerCellSystem private void OnMicrowaved(EntityUid uid, BatteryComponent component, BeingMicrowavedEvent args) { + if (component.CurrentCharge == 0) + return; + args.Handled = true; // What the fuck are you doing???