Adding new chat type for private messages in lobby.
This commit is contained in:
+6
-1
@@ -643,7 +643,8 @@ StatisticsData ::= SEQUENCE {
|
||||
ChatRequestMessage ::= [APPLICATION 129] SEQUENCE {
|
||||
chatRequestType CHOICE {
|
||||
chatRequestTypeLobby [0] ChatRequestTypeLobby,
|
||||
chatRequestTypeGame [1] ChatRequestTypeGame
|
||||
chatRequestTypeGame [1] ChatRequestTypeGame,
|
||||
chatRequestTypePrivate [2] ChatRequestTypePrivate
|
||||
},
|
||||
chatText UTF8String (SIZE(1..128))
|
||||
}
|
||||
@@ -655,6 +656,10 @@ ChatRequestTypeGame ::= SEQUENCE {
|
||||
gameId NonZeroId
|
||||
}
|
||||
|
||||
ChatRequestTypePrivate ::= SEQUENCE {
|
||||
targetPlayerId NonZeroId
|
||||
}
|
||||
|
||||
ChatMessage ::= [APPLICATION 130] SEQUENCE {
|
||||
chatType CHOICE {
|
||||
chatTypeLobby [0] ChatTypeLobby,
|
||||
|
||||
Reference in New Issue
Block a user