Improve explosion logs (#13351)
* add types to explosion logs * make explosions logged by default * add cause parameter to IThresholdBehavior * add cause to ExplodeBehaviors * add cause to power cell explosions * remove useless log * add triggerer to triggers * add logs for damage from explosions * sneaky power cell update
This commit is contained in:
@@ -59,10 +59,12 @@ namespace Content.Server.Kitchen.Components
|
||||
public sealed class BeingMicrowavedEvent : HandledEntityEventArgs
|
||||
{
|
||||
public EntityUid Microwave;
|
||||
public EntityUid? User;
|
||||
|
||||
public BeingMicrowavedEvent(EntityUid microwave)
|
||||
public BeingMicrowavedEvent(EntityUid microwave, EntityUid? user)
|
||||
{
|
||||
Microwave = microwave;
|
||||
User = user;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user