From e17c34b517dc92036c345a6e00a17fcb6634bd22 Mon Sep 17 00:00:00 2001 From: jvyden Date: Thu, 4 Nov 2021 00:30:30 -0400 Subject: [PATCH] Fix screwed up UsedSlots count --- ProjectLighthouse/Types/User.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ProjectLighthouse/Types/User.cs b/ProjectLighthouse/Types/User.cs index 8d16af5d..f3c9c4f1 100644 --- a/ProjectLighthouse/Types/User.cs +++ b/ProjectLighthouse/Types/User.cs @@ -114,7 +114,7 @@ namespace LBPUnion.ProjectLighthouse.Types foreach (string slotType in slotTypes) { - slots += LbpSerializer.StringElement(slotType + "UsedSlots", this.UsedSlots); + slots += LbpSerializer.StringElement(slotType + "UsedSlots", 0); slots += LbpSerializer.StringElement(slotType + "EntitledSlots", ServerSettings.EntitledSlots); // ReSharper disable once StringLiteralTypo slots += LbpSerializer.StringElement(slotType + slotType == "crossControl" ? "PurchsedSlots" : "PurchasedSlots", 0);