1
0
mirror of https://github.com/RaidMax/IW4M-Admin.git synced 2025-06-13 16:48:27 -05:00

more configuration changes,

fixed issue with not escaping regex for validating commands
This commit is contained in:
RaidMax
2018-03-18 21:24:06 -05:00
parent 0312238ef0
commit 1580a1eb59
3 changed files with 364 additions and 0 deletions

View File

@ -0,0 +1,17 @@
using SharedLibrary.Objects;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace StatsPlugin.Cheat
{
class DetectionPenaltyResult
{
public Penalty.PenaltyType ClientPenalty { get; set; }
public double RatioAmount { get; set; }
public IW4Info.HitLocation Bone { get; set; }
public int KillCount { get; set; }
}
}