mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2025-01-10 23:51:01 -07:00
Fix bug
This commit is contained in:
parent
560816387c
commit
da0f6e585d
1 changed files with 4 additions and 2 deletions
|
@ -3,8 +3,10 @@ import MiOS from '../../../../../mios';
|
|||
|
||||
export class ReversiGameStream extends Stream {
|
||||
constructor(os: MiOS, me, game) {
|
||||
super(os, 'games/reversi-game', {
|
||||
i: me ? me.token : null,
|
||||
super(os, 'games/reversi-game', me ? {
|
||||
i: me.token,
|
||||
game: game.id
|
||||
} : {
|
||||
game: game.id
|
||||
});
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue