Merge branch 'develop' of github.com:thecodingmachine/workadventure into upgrade_typescript_4.5
This commit is contained in:
commit
b2bcfde5b1
64 changed files with 1650 additions and 145 deletions
|
@ -19,6 +19,7 @@ export interface FetchMemberDataByUuidResponse {
|
|||
textures: CharacterTexture[];
|
||||
messages: unknown[];
|
||||
anonymous?: boolean;
|
||||
userRoomToken: string | undefined;
|
||||
}
|
||||
|
||||
class AdminApi {
|
||||
|
|
|
@ -157,6 +157,11 @@ export class SocketManager implements ZoneEventListener {
|
|||
joinRoomMessage.setName(client.name);
|
||||
joinRoomMessage.setPositionmessage(ProtobufUtils.toPositionMessage(client.position));
|
||||
joinRoomMessage.setTagList(client.tags);
|
||||
|
||||
if (client.userRoomToken) {
|
||||
joinRoomMessage.setUserroomtoken(client.userRoomToken);
|
||||
}
|
||||
|
||||
if (client.visitCardUrl) {
|
||||
joinRoomMessage.setVisitcardurl(client.visitCardUrl);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue