Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ export class MysteryBoxWaitingCanceledMessageComposer implements IMessageCompose
{
private _data: ConstructorParameters<typeof MysteryBoxWaitingCanceledMessageComposer>;

constructor(k: number)
constructor(ownerId: number)
{
this._data = [ k ];
this._data = [ ownerId ];
}

dispose(): void
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@ import { IMessageDataWrapper, IMessageParser } from '../../../../../api';

export class CancelMysteryBoxWaitMessageParser implements IMessageParser
{


public flush(): boolean
{
return true;
Expand All @@ -13,9 +11,6 @@ export class CancelMysteryBoxWaitMessageParser implements IMessageParser
{
if(!wrapper) return false;



return true;
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,4 @@ export class GotMysteryBoxPrizeMessageParser implements IMessageParser
{
return this._classId;
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@ import { IMessageDataWrapper, IMessageParser } from '../../../../../api';

export class ShowMysteryBoxWaitMessageParser implements IMessageParser
{


public flush(): boolean
{
return true;
Expand All @@ -13,9 +11,6 @@ export class ShowMysteryBoxWaitMessageParser implements IMessageParser
{
if(!wrapper) return false;



return true;
}

}