Files
7d2dXG/Mods/zzz_REBIRTH__Utils/Scripts/MinEvents/MinEventActionLogStatsRebirth.cs
Nathaniel Cosford 062dfab2cd Patched
2025-05-30 01:04:40 +09:30

13 lines
309 B
C#

public class MinEventActionLogStatsRebirth : MinEventActionTargetedBase
{
public override void Execute(MinEventParams _params)
{
var entity = _params.Self as EntityAlive;
if (entity == null)
{
return;
}
RebirthUtilities.LogStats(entity);
}
}