From fa8a7e609a4d2845d4812253fd6c26d280b423c7 Mon Sep 17 00:00:00 2001 From: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> Date: Wed, 2 Feb 2022 13:32:01 +1100 Subject: [PATCH] Reduce charge allocs (#6431) --- Content.Server/Power/Components/BatteryComponent.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Server/Power/Components/BatteryComponent.cs b/Content.Server/Power/Components/BatteryComponent.cs index 641bfcca30..bd099c3e8a 100644 --- a/Content.Server/Power/Components/BatteryComponent.cs +++ b/Content.Server/Power/Components/BatteryComponent.cs @@ -93,5 +93,5 @@ namespace Content.Server.Power.Components } } - public class ChargeChangedEvent : EventArgs { } + public struct ChargeChangedEvent {} }