From f55f15a81c1eccfec82c56dad1690f069c753c1e Mon Sep 17 00:00:00 2001 From: jvyden Date: Thu, 14 Oct 2021 19:01:19 -0400 Subject: [PATCH] Fix userID being sent for slots instead of username --- ProjectLighthouse/Types/Slot.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ProjectLighthouse/Types/Slot.cs b/ProjectLighthouse/Types/Slot.cs index fb46eb37..4d061dab 100644 --- a/ProjectLighthouse/Types/Slot.cs +++ b/ProjectLighthouse/Types/Slot.cs @@ -95,7 +95,7 @@ namespace ProjectLighthouse.Types { string slotData = LbpSerializer.StringElement("name", Name) + LbpSerializer.StringElement("id", SlotId) + LbpSerializer.StringElement("game", 1) + - LbpSerializer.StringElement("npHandle", Creator.UserId) + + LbpSerializer.StringElement("npHandle", Creator.Username) + LbpSerializer.StringElement("description", Description) + LbpSerializer.StringElement("icon", IconHash) + LbpSerializer.StringElement("resource", Resource) +