mirror of
https://github.com/billsonnn/nitro-renderer.git
synced 2024-11-26 17:30:52 +01:00
Merge branch 'main' into @update/widgets
This commit is contained in:
commit
25b407f79f
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@nitrots/nitro-renderer",
|
||||
"description": "Javascript library for rendering Nitro in the browser using PixiJS",
|
||||
"version": "1.2.5",
|
||||
"version": "1.2.6",
|
||||
"publishConfig": {
|
||||
"access": "public"
|
||||
},
|
||||
|
@ -1,5 +1,5 @@
|
||||
export class NitroVersion
|
||||
{
|
||||
public static RENDERER_VERSION: string = '1.2.5';
|
||||
public static RENDERER_VERSION: string = '1.2.6';
|
||||
public static UI_VERSION: string = '';
|
||||
}
|
||||
|
@ -1,10 +1,15 @@
|
||||
import { IMessageComposer } from '../../../../../../core/communication/messages/IMessageComposer';
|
||||
|
||||
export class SaveRoomSettingsComposer implements IMessageComposer<ConstructorParameters<typeof SaveRoomSettingsComposer>>
|
||||
export class SaveRoomSettingsComposer
|
||||
implements
|
||||
IMessageComposer<
|
||||
ConstructorParameters<typeof SaveRoomSettingsComposer>
|
||||
>
|
||||
{
|
||||
private _data: ConstructorParameters<typeof SaveRoomSettingsComposer>;
|
||||
|
||||
constructor(roomId: number,
|
||||
constructor(
|
||||
roomId: number,
|
||||
roomName: string,
|
||||
roomDescription: string,
|
||||
lockState: number,
|
||||
@ -30,16 +35,22 @@ export class SaveRoomSettingsComposer implements IMessageComposer<ConstructorPar
|
||||
chatFloodProtection: number
|
||||
)
|
||||
{
|
||||
this._data = [
|
||||
//@ts-ignore
|
||||
this._data = [];
|
||||
|
||||
this._data.push(
|
||||
roomId,
|
||||
roomName,
|
||||
roomDescription,
|
||||
lockState,
|
||||
password,
|
||||
userCount,
|
||||
categoryId,
|
||||
tagsCount,
|
||||
tags,
|
||||
categoryId
|
||||
);
|
||||
|
||||
this._data.push(tags.length, ...tags);
|
||||
|
||||
this._data.push(
|
||||
tradeState,
|
||||
allowPets,
|
||||
allowPetsEat,
|
||||
@ -55,7 +66,7 @@ export class SaveRoomSettingsComposer implements IMessageComposer<ConstructorPar
|
||||
chatBubbleSpeed,
|
||||
chatDistance,
|
||||
chatFloodProtection
|
||||
];
|
||||
);
|
||||
}
|
||||
|
||||
public getMessageArray()
|
||||
@ -67,4 +78,4 @@ export class SaveRoomSettingsComposer implements IMessageComposer<ConstructorPar
|
||||
{
|
||||
return;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user