Where would I change it to warn? Would it be what I colored in red?
public class ClientVerification
{
private static readonly bool m_DetectClientRequirement = true;
private static readonly OldClientResponse m_OldClientResponse = OldClientResponse.LenientKick;
private static readonly TimeSpan m_AgeLeniency = TimeSpan.FromDays(10);
private static readonly TimeSpan m_GameTimeLeniency = TimeSpan.FromHours(25);
private static ClientVersion m_Required;
public static TimeSpan KickDelay = TimeSpan.FromSeconds(Config.Get("Client.KickDelay", 20.0));
public static bool AllowRegular = Config.Get("Client.AllowRegular", true);
public static bool AllowUOTD = Config.Get("Client.AllowUOTD", true);
public static bool AllowGod = Config.Get("Client.AllowGod", true);
private enum OldClientResponse
{
Ignore,
Warn,
Annoy,
LenientKick,
Kick
}
public static ClientVersion Required
{
get
{
return m_Required;
}
set
{
m_Required = value;
}