diff --git a/Content.Server/GameObjects/EntitySystems/Click/InteractionSystem.cs b/Content.Server/GameObjects/EntitySystems/Click/InteractionSystem.cs index a67252fd12..45cd5b5ec9 100644 --- a/Content.Server/GameObjects/EntitySystems/Click/InteractionSystem.cs +++ b/Content.Server/GameObjects/EntitySystems/Click/InteractionSystem.cs @@ -30,8 +30,9 @@ namespace Content.Server.GameObjects.EntitySystems bool AttackBy(AttackByEventArgs eventArgs); } - public class AttackByEventArgs : AttackHandEventArgs + public class AttackByEventArgs : EventArgs { + public IEntity User { get; set; } public IEntity AttackWith { get; set; } }