diff --git a/Content.Server/GameObjects/Components/Mobs/SpeciesComponent.cs b/Content.Server/GameObjects/Components/Mobs/SpeciesComponent.cs index 14df66475a..d141742186 100644 --- a/Content.Server/GameObjects/Components/Mobs/SpeciesComponent.cs +++ b/Content.Server/GameObjects/Components/Mobs/SpeciesComponent.cs @@ -126,6 +126,21 @@ namespace Content.Server.GameObjects return CurrentDamageState.CanAttack(); } + bool IActionBlocker.CanEquip() + { + return CurrentDamageState.CanEquip(); + } + + bool IActionBlocker.CanUnequip() + { + return CurrentDamageState.CanUnequip(); + } + + bool IActionBlocker.CanChangeDirection() + { + return CurrentDamageState.CanChangeDirection(); + } + List IOnDamageBehavior.GetAllDamageThresholds() { var thresholdlist = DamageTemplate.DamageThresholds;