Prevent Holoparasites from attacking their host (#6019)
This commit is contained in:
@@ -4,11 +4,13 @@ namespace Content.Shared.Interaction.Events
|
||||
{
|
||||
public class AttackAttemptEvent : CancellableEntityEventArgs
|
||||
{
|
||||
public AttackAttemptEvent(EntityUid uid)
|
||||
public EntityUid Uid { get; }
|
||||
public EntityUid? Target { get; }
|
||||
|
||||
public AttackAttemptEvent(EntityUid uid, EntityUid? target = null)
|
||||
{
|
||||
Uid = uid;
|
||||
Target = target;
|
||||
}
|
||||
|
||||
public EntityUid Uid { get; }
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user