Fix userID being sent for slots instead of username

This commit is contained in:
jvyden 2021-10-14 19:01:19 -04:00
parent 59ba45036d
commit f55f15a81c
No known key found for this signature in database
GPG key ID: 18BCF2BE0262B278

View file

@ -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) +