mirror of
https://github.com/LBPUnion/ProjectLighthouse.git
synced 2025-07-28 16:08:38 +00:00
Fix screwed up UsedSlots count
This commit is contained in:
parent
fe6a743157
commit
e17c34b517
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue