From 389ca16cf712c88e22dbe9865e0045ea69576d40 Mon Sep 17 00:00:00 2001 From: jvyden Date: Thu, 20 Jan 2022 21:32:26 -0500 Subject: [PATCH] Serialize level tags/authorLabels Closes #88 --- ProjectLighthouse/Types/Levels/Slot.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/ProjectLighthouse/Types/Levels/Slot.cs b/ProjectLighthouse/Types/Levels/Slot.cs index a7abbcff..17a9ee33 100644 --- a/ProjectLighthouse/Types/Levels/Slot.cs +++ b/ProjectLighthouse/Types/Levels/Slot.cs @@ -221,6 +221,7 @@ public class Slot LbpSerializer.StringElement("description", this.Description) + LbpSerializer.StringElement("icon", this.IconHash) + LbpSerializer.StringElement("rootLevel", this.RootLevel) + + LbpSerializer.StringElement("authorLabels", this.AuthorLabels) + this.SerializeResources() + LbpSerializer.StringElement("location", this.Location?.Serialize()) + LbpSerializer.StringElement("initiallyLocked", this.InitiallyLocked) +