make jaws of life not awful (#10770)

This commit is contained in:
Rane
2022-08-31 23:22:25 -04:00
committed by GitHub
parent f6ef097eb2
commit 822c8f3c70
6 changed files with 36 additions and 2 deletions

View File

@@ -78,10 +78,12 @@ namespace Content.Shared.Doors
public sealed class BeforeDoorPryEvent : CancellableEntityEventArgs
{
public readonly EntityUid User;
public readonly EntityUid Tool;
public BeforeDoorPryEvent(EntityUid user)
public BeforeDoorPryEvent(EntityUid user, EntityUid tool)
{
User = user;
Tool = tool;
}
}
}