IW4M-Admin/SharedLibraryCore/PartialEntities/EFPenalty.cs
RaidMax 8119ff9f83 adjust detection thresholds for recoil and offset
make sure we don't keep adding penalties after first
add "Other" penalty for future plugin use
2019-06-24 16:56:47 -05:00

23 lines
385 B
C#

using System;
using SharedLibraryCore;
namespace SharedLibraryCore.Database.Models
{
public partial class EFPenalty
{
public enum PenaltyType
{
Report,
Warning,
Flag,
Kick,
TempBan,
Ban,
Unban,
Any,
Unflag,
Other = 100
}
}
}