refactored into a seperate addPlayer request

This commit is contained in:
Dennis Frieberg 2020-08-29 14:41:16 +02:00
parent af85b34761
commit 40d19841d7

View file

@ -93,16 +93,21 @@ the allowed values of `<RequestType>` and the implication for the rest of
the corresponding fields, look at the documentation of the specific requests. the corresponding fields, look at the documentation of the specific requests.
### SetPlayerTickR ### SetPlayerTickR
This request is used to set a player to a specific Tick. If the Player is an This request is used to set a player to a specific Tick.
`UnknownPlayer` it will be added.
``` ```
{ {
"requestType" : "SetPlayerTickR", "requestType" : "SetPlayerTickR",
"player" : <Player> "player" : <KnownPlayer>
"tick" : <Tick> "tick" : <Tick>
} }
``` ```
### AddPlayerTickR
```
"requestType" : "AddPlayerTickR",
"player" : <UnknownPlayer>
"tick" : <Tick>
```
### InitializeTickLeisteR ### InitializeTickLeisteR
Initialize a new TickLeiste, either one saved on the client side, Initialize a new TickLeiste, either one saved on the client side,