From ddde077d164ada5cbcc6d8684781d319bfc17077 Mon Sep 17 00:00:00 2001 From: PrPleGoo Date: Fri, 5 Apr 2019 19:29:16 +0200 Subject: [PATCH] AttackByEventArgs inherits from EventArgs again --- .../GameObjects/EntitySystems/Click/InteractionSystem.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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; } }