You can no longer disarm wielded weapons (#7983)
Co-authored-by: Kara <lunarautomaton6@gmail.com>
This commit is contained in:
@@ -6,10 +6,13 @@ namespace Content.Server.Actions.Events
|
||||
{
|
||||
public readonly EntityUid TargetUid;
|
||||
public readonly EntityUid DisarmerUid;
|
||||
public DisarmAttemptEvent(EntityUid targetUid, EntityUid disarmerUid)
|
||||
public readonly EntityUid? TargetItemInHandUid;
|
||||
|
||||
public DisarmAttemptEvent(EntityUid targetUid, EntityUid disarmerUid, EntityUid? targetItemInHandUid = null)
|
||||
{
|
||||
TargetUid = targetUid;
|
||||
DisarmerUid = disarmerUid;
|
||||
TargetItemInHandUid = targetItemInHandUid;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user