fix: Reverse return value
This commit is contained in:
parent
2598475a81
commit
31e8ad7a7f
2 changed files with 4 additions and 4 deletions
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "muffinbot",
|
||||
"version": "3.0.0-cake.d240728a",
|
||||
"version": "3.0.0-cake.d240728b",
|
||||
"main": "dist/index.js",
|
||||
"private": true,
|
||||
"dependencies": {
|
||||
|
|
|
@ -32,8 +32,8 @@ export class WordRelay {
|
|||
},
|
||||
}).then(res => res.body.json())
|
||||
|
||||
if (res.channel.total === 0) return true
|
||||
else return false
|
||||
if (res.channel.total === 0) return false
|
||||
else return true
|
||||
}
|
||||
|
||||
public startGame(msg: Message<true>) {
|
||||
|
@ -80,7 +80,7 @@ export class WordRelay {
|
|||
collector.stop(`${MAAWR_COLLECTED}: ${message.content}`)
|
||||
}
|
||||
})
|
||||
.on('end', (collected, reason) => {
|
||||
.on('end', (_, reason) => {
|
||||
if (reason === 'time') {
|
||||
thread.send(
|
||||
`<@${userID}>님, 60초동안 시작단어를 입력하지 않아 자동ㅇ으로 게임이 종료되었어요.`,
|
||||
|
|
Loading…
Reference in a new issue