e60f612f95
[iw4script] reworked balance to balance based on performance rating [stats] log penalty context to database
14 lines
389 B
C#
14 lines
389 B
C#
using SharedLibraryCore.Objects;
|
|
|
|
namespace IW4MAdmin.Plugins.Stats.Cheat
|
|
{
|
|
class DetectionPenaltyResult
|
|
{
|
|
public Detection.DetectionType Type { get; set; }
|
|
public Penalty.PenaltyType ClientPenalty { get; set; }
|
|
public double Value { get; set; }
|
|
public IW4Info.HitLocation Location { get; set; }
|
|
public int HitCount { get; set; }
|
|
}
|
|
}
|