Fix GameVersion serialization in Slot

This commit is contained in:
jvyden 2021-11-04 00:27:41 -04:00
commit fe6a743157
No known key found for this signature in database
GPG key ID: 18BCF2BE0262B278

View file

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