Adding new chat type for private messages in lobby.

This commit is contained in:
lotodore
2010-11-07 07:26:56 +00:00
parent a1837a43f6
commit 59f9ba5fef
11 changed files with 45 additions and 26 deletions
+6 -1
View File
@@ -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,