Begin to add the admin bypass cooldown option

This commit is contained in:
zontreck 2025-03-07 01:44:27 -07:00
parent f86030dc61
commit cd00e620c3
4 changed files with 24 additions and 3 deletions

View file

@ -22,13 +22,14 @@ namespace AriasServerUtils
{ CooldownType.RTP, "30s" },
{ CooldownType.Back, "5s" }
};
private static readonly int CURRENT_VERSION = 3;
private static readonly int CURRENT_VERSION = 4;
public int Version { get; set; } = 0;
public int MaxHomes { get; set; } = 20;
public bool AdminsBypassMaxHomes { get; set; } = true;
public bool onlyAdminsCreateWarps { get; set; } = true;
public bool AdminsBypassCooldowns { get; set; } = true;
public int MaxBackCache { get; set; } = 10;
public int PlayerSleepingPercentage { get; set; } = 50;
public int MaxRTPBlockDistance { get; set; } = 5000;