From fe6a74315776c7ddf008abd25ec2174b7e8437f2 Mon Sep 17 00:00:00 2001 From: jvyden Date: Thu, 4 Nov 2021 00:27:41 -0400 Subject: [PATCH] Fix GameVersion serialization in Slot --- ProjectLighthouse/Types/Levels/Slot.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ProjectLighthouse/Types/Levels/Slot.cs b/ProjectLighthouse/Types/Levels/Slot.cs index f8d93d1a..c21fb698 100644 --- a/ProjectLighthouse/Types/Levels/Slot.cs +++ b/ProjectLighthouse/Types/Levels/Slot.cs @@ -107,7 +107,7 @@ namespace LBPUnion.ProjectLighthouse.Types.Levels { string slotData = LbpSerializer.StringElement("name", this.Name) + LbpSerializer.StringElement("id", this.SlotId) + - LbpSerializer.StringElement("game", this.GameVersion) + + LbpSerializer.StringElement("game", (int)this.GameVersion) + LbpSerializer.StringElement("npHandle", this.Creator.Username) + LbpSerializer.StringElement("description", this.Description) + LbpSerializer.StringElement("icon", this.IconHash) +