add server message, server chown and chat clearing
This commit is contained in:
parent
3381420a82
commit
0799979fd2
3 changed files with 66 additions and 9 deletions
|
|
@ -1,3 +1,5 @@
|
|||
// PV version = 13661e19e8c210d990baa4d96aa8905430c709d5
|
||||
|
||||
syntax = "proto3";
|
||||
|
||||
package pianoverse;
|
||||
|
|
@ -17,7 +19,7 @@ message ClientMessage {
|
|||
SUSTAIN = 10;
|
||||
HEARTBEAT = 11;
|
||||
BAN = 12;
|
||||
OWNER = 13;
|
||||
CHOWN = 13;
|
||||
}
|
||||
|
||||
EventType event = 1;
|
||||
|
|
@ -51,7 +53,7 @@ message ClientMessage {
|
|||
uint32 hours = 2;
|
||||
}
|
||||
|
||||
string owner = 15;
|
||||
string chown = 15;
|
||||
}
|
||||
|
||||
message ServerMessage {
|
||||
|
|
@ -68,6 +70,9 @@ message ServerMessage {
|
|||
JOIN = 9;
|
||||
LEAVE = 10;
|
||||
RATELIMIT = 11;
|
||||
MESSAGE = 12;
|
||||
CHOWN = 13;
|
||||
CLEAR = 14;
|
||||
}
|
||||
|
||||
EventType event = 1;
|
||||
|
|
@ -122,6 +127,10 @@ message ServerMessage {
|
|||
string leave = 12;
|
||||
|
||||
int32 rateLimit = 13;
|
||||
|
||||
string message = 14;
|
||||
string chown = 15;
|
||||
int32 clear = 16;
|
||||
}
|
||||
|
||||
message Profile {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue