diff --git a/Content.Server/GameObjects/Components/Damage/DamageableComponent.cs b/Content.Server/GameObjects/Components/Damage/DamageableComponent.cs index 0a561e7301..c7b997959c 100644 --- a/Content.Server/GameObjects/Components/Damage/DamageableComponent.cs +++ b/Content.Server/GameObjects/Components/Damage/DamageableComponent.cs @@ -30,6 +30,7 @@ namespace Content.Server.GameObjects [ViewVariables] public ResistanceSet Resistances { get; private set; } + [ViewVariables] public IReadOnlyDictionary CurrentDamage => _currentDamage; private Dictionary _currentDamage = new Dictionary();