Update message IDs to be compatible with new game server

This commit is contained in:
Blake Oliver 2026-04-29 21:11:54 -06:00
parent 7316b25f87
commit 535d2771bb
No known key found for this signature in database
2 changed files with 8 additions and 7 deletions

View file

@ -14,6 +14,7 @@ Some bugs fixed this release:
* Fix DM's tab: add haptics, sound, and keyboard fix; fix display of unanswered DM conversations * Fix DM's tab: add haptics, sound, and keyboard fix; fix display of unanswered DM conversations
* Attempt to fix scroll to bottom not showing the last message until sending another * Attempt to fix scroll to bottom not showing the last message until sending another
* Scroll to bottom when the keyboard opens (any buffer and DMs tab) * Scroll to bottom when the keyboard opens (any buffer and DMs tab)
* Fix message IDs to be compatible with new server
### Known bugs ### Known bugs
You've reported them but they aren't fixed just yet: You've reported them but they aren't fixed just yet:

View file

@ -12,8 +12,8 @@ enum ServerMethod: Int32 {
case leaveGame = 5 case leaveGame = 5
// 6 = TimeSync, 7 = RequestProfile // 6 = TimeSync, 7 = RequestProfile
case directMessage = 8 case directMessage = 8
// 9..20 = game-specific methods // 9..21 = game-specific methods
case remoteFormEvent = 21 case remoteFormEvent = 22
} }
// MARK: - Client Methods (server -> client) // MARK: - Client Methods (server -> client)
@ -30,11 +30,11 @@ enum ClientMethod: Int32 {
// 8 = Profile (unhandled) // 8 = Profile (unhandled)
case say = 9 case say = 9
case loadInstance = 10 case loadInstance = 10
// 11..32 = game-specific methods (unhandled) // 11..33 = game-specific methods (unhandled)
case showRemoteForm = 33 case showRemoteForm = 34
case updateRemoteForm = 34 case updateRemoteForm = 35
case closeRemoteForm = 35 case closeRemoteForm = 36
case disconnect = 36 case disconnect = 37
} }
// MARK: - Remote Form Event Types // MARK: - Remote Form Event Types