Update message IDs to be compatible with new game server
This commit is contained in:
parent
7316b25f87
commit
535d2771bb
2 changed files with 8 additions and 7 deletions
|
|
@ -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:
|
||||||
|
|
|
||||||
|
|
@ -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
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue