server-master/srcs/WingsAPI.Game/Configurations/Miniland/AntiExploitConfiguration.cs
2026-02-10 18:21:30 +01:00

16 lines
No EOL
483 B
C#

using System;
namespace WingsEmu.Game.Configurations.Miniland;
public class AntiExploitConfiguration
{
public double MinigameAbuseDetectionThreshold { get; set; } = 0.5;
public TimeSpan CommonTimeExpendedInMinigamesPerDay { get; set; } = TimeSpan.FromHours(2);
public double PercentageForSameScoreCheck { get; set; } = 0.5;
public int UseSameScoreCheckAtXMinigames { get; set; } = 10;
public bool GiveRewardsToPossibleFalsePositives { get; set; } = false;
}