fix: Can't send preview version use warning message

This commit is contained in:
Siwoo Jeon 2024-09-27 22:46:07 +09:00
parent 71db89f4d5
commit cbe8df23e1
Signed by: migan
GPG key ID: 036E9A8C5E8E48DA
2 changed files with 3 additions and 4 deletions

View file

@ -1,6 +1,6 @@
{ {
"name": "muffinbot", "name": "muffinbot",
"version": "3.1.0-cake.p240927a", "version": "3.1.0-cake.p240927b",
"main": "dist/index.js", "main": "dist/index.js",
"private": true, "private": true,
"dependencies": { "dependencies": {

View file

@ -4,7 +4,7 @@ import { noPerm } from '../modules'
import Dokdo from 'dokdo' import Dokdo from 'dokdo'
class MessageCreateListener extends Listener { class MessageCreateListener extends Listener {
public async run(msg: Message) { public async run(msg: Message<true>) {
const prefix = this.container.prefix const prefix = this.container.prefix
const dokdo = new Dokdo(this.container.client, { const dokdo = new Dokdo(this.container.client, {
aliases: ['dokdo', 'dok'], aliases: ['dokdo', 'dok'],
@ -14,14 +14,13 @@ class MessageCreateListener extends Listener {
}) })
if (msg.author.bot) return if (msg.author.bot) return
if (msg.content.startsWith(prefix)) { if (msg.content.startsWith(prefix)) {
if (this.container.release === 'PRE-RELEASE') { if (this.container.release === 'PREVIEW') {
await msg.reply({ await msg.reply({
embeds: [ embeds: [
{ {
title: '정식 출시 이전 버전 사용안내', title: '정식 출시 이전 버전 사용안내',
description: description:
`현재 이 버전의 ${this.container.client.user?.username}은 정식출시 되기 이전이라 많이 불안정할 수 있어요.\n` + `현재 이 버전의 ${this.container.client.user?.username}은 정식출시 되기 이전이라 많이 불안정할 수 있어요.\n` +
`또한 이 버전의 ${this.container.client.user?.username}의 데이터는 정식버전과 연동이 안돼요.\n` +
`만약 오류가 발견되면 ${(await this.container.client.users.fetch(this.container.config.bot.owner_ID)).username}님에게 알려주세요.\n`, `만약 오류가 발견되면 ${(await this.container.client.users.fetch(this.container.config.bot.owner_ID)).username}님에게 알려주세요.\n`,
color: 0xff0000, color: 0xff0000,
footer: { footer: {