Merge pull request #28 from MinazukiAmane/Development

minor adjustment
This commit is contained in:
Amane Serenetia 2024-11-03 11:56:48 +07:00 committed by GitHub
commit 1d8e08f399
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
{ {
"name": "TinashaBot", "name": "TinashaBot",
"version": "5.6.0", "version": "5.6.2",
"description": "multipurpose discord bot built using discord-js", "description": "multipurpose discord bot built using discord-js",
"main": "bot.js", "main": "bot.js",
"author": "Amane", "author": "Amane",

View File

@ -6,7 +6,7 @@ const { byteUnit } = require('@root/src/helpers/Units');
module.exports = { module.exports = {
name: "nodes", name: "nodes",
description: "Lists lavalink nodes", description: "Lists Audio nodes",
category: "UTILITY", category: "UTILITY",
command: { command: {
enabled: true, enabled: true,
@ -64,7 +64,7 @@ async function fetchNodesAndTurnItToTable(nodes) {
})) }))
return new EmbedBuilder({ return new EmbedBuilder({
title: 'Lavalink Nodes', title: 'Audio Nodes',
color: 0x0088ff, color: 0x0088ff,
fields: fields fields: fields
}) })