13 lines
309 B
C#
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);
|
|
}
|
|
} |