Competition | Change name variables

This commit is contained in:
object 2023-11-25 16:58:05 +01:00
parent 961540b045
commit cb827c0b2e
7 changed files with 14 additions and 14 deletions

View File

@ -4,9 +4,9 @@ export class ForwardToACompetitionRoomMessageComposer implements IMessageCompose
{
private _data: ConstructorParameters<typeof ForwardToACompetitionRoomMessageComposer>;
constructor(k: string, _arg_2: number)
constructor(goalCode: string, userId: number)
{
this._data = [k, _arg_2];
this._data = [goalCode, userId];
}
public getMessageArray()

View File

@ -4,9 +4,9 @@ export class ForwardToRandomCompetitionRoomMessageComposer implements IMessageCo
{
private _data: ConstructorParameters<typeof ForwardToRandomCompetitionRoomMessageComposer>;
constructor(k: string)
constructor(goalCode: string)
{
this._data = [k];
this._data = [goalCode];
}
public getMessageArray()

View File

@ -4,9 +4,9 @@ export class GetCurrentTimingCodeMessageComposer implements IMessageComposer<Con
{
private _data: ConstructorParameters<typeof GetCurrentTimingCodeMessageComposer>;
constructor(k: string)
constructor(schedulingStr: string)
{
this._data = [k];
this._data = [schedulingStr];
}
public getMessageArray()

View File

@ -4,9 +4,9 @@ export class GetIsUserPartOfCompetitionMessageComposer implements IMessageCompos
{
private _data: ConstructorParameters<typeof GetIsUserPartOfCompetitionMessageComposer>;
constructor(k: string)
constructor(goalCode: string)
{
this._data = [k];
this._data = [goalCode];
}
public getMessageArray()

View File

@ -4,9 +4,9 @@ export class GetSecondsUntilMessageComposer implements IMessageComposer<Construc
{
private _data: ConstructorParameters<typeof GetSecondsUntilMessageComposer>;
constructor(k: string)
constructor(timeStr: string)
{
this._data = [k];
this._data = [timeStr];
}
public getMessageArray()

View File

@ -9,9 +9,9 @@ export class SubmitRoomToCompetitionMessageComposer implements IMessageComposer<
private _data: ConstructorParameters<typeof SubmitRoomToCompetitionMessageComposer>;
constructor(k: string, _arg_2: number)
constructor(goalCode: string, confirmLevel: number)
{
this._data = [k, _arg_2];
this._data = [goalCode, confirmLevel];
}
public getMessageArray()

View File

@ -4,9 +4,9 @@ export class VoteForRoomMessageComposer implements IMessageComposer<ConstructorP
{
private _data: ConstructorParameters<typeof VoteForRoomMessageComposer>;
constructor(k: string)
constructor(goalCode: string)
{
this._data = [k];
this._data = [goalCode];
}
public getMessageArray()