From 8bb4f526f5b7eba68a08b1dc34fa049b11873bb9 Mon Sep 17 00:00:00 2001 From: Pieter-Jan Briers Date: Tue, 28 May 2019 13:34:11 +0200 Subject: [PATCH] Make it possible to VV DamageableComponent's damage. --- .../GameObjects/Components/Damage/DamageableComponent.cs | 1 + 1 file changed, 1 insertion(+) 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();