From 88e77e1c739bdc1126997bb3d9eeee970ecf6ee7 Mon Sep 17 00:00:00 2001 From: jvyden Date: Fri, 29 Oct 2021 16:13:12 -0400 Subject: [PATCH] Limit max levels and lists to 50 --- ProjectLighthouse/Types/Settings/ServerSettings.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ProjectLighthouse/Types/Settings/ServerSettings.cs b/ProjectLighthouse/Types/Settings/ServerSettings.cs index 1e456c23..b4de8c54 100644 --- a/ProjectLighthouse/Types/Settings/ServerSettings.cs +++ b/ProjectLighthouse/Types/Settings/ServerSettings.cs @@ -8,9 +8,9 @@ namespace LBPUnion.ProjectLighthouse.Types.Settings { /// /// The maximum amount of slots allowed on users' earth /// - 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";