Limit max levels and lists to 50

This commit is contained in:
jvyden 2021-10-29 16:13:12 -04:00
commit 88e77e1c73
No known key found for this signature in database
GPG key ID: 18BCF2BE0262B278

View file

@ -8,9 +8,9 @@ namespace LBPUnion.ProjectLighthouse.Types.Settings {
/// <summary> /// <summary>
/// The maximum amount of slots allowed on users' earth /// The maximum amount of slots allowed on users' earth
/// </summary> /// </summary>
public const int EntitledSlots = int.MaxValue; public const int EntitledSlots = 50;
public const int ListsQuota = 20; public const int ListsQuota = 50;
public const string ServerName = "ProjectLighthouse"; public const string ServerName = "ProjectLighthouse";