mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-27 06:37:32 +02:00
Fix
This commit is contained in:
@@ -1,14 +0,0 @@
|
|||||||
{
|
|
||||||
"statuses": {
|
|
||||||
"online": "<:online:313956277808005120> Online",
|
|
||||||
"idle": "<:away:313956277220802560> Idle",
|
|
||||||
"dnd": "<:dnd:313956276893646850> Do Not Disturb",
|
|
||||||
"offline": "<:offline:313956277237710868> Offline"
|
|
||||||
},
|
|
||||||
"colors": {
|
|
||||||
"online": 0x00AE86,
|
|
||||||
"idle": 0xFFFF00,
|
|
||||||
"dnd": 0xFF0000,
|
|
||||||
"offline": 0x808080
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,7 +1,18 @@
|
|||||||
const Command = require('../../structures/Command');
|
const Command = require('../../structures/Command');
|
||||||
const { RichEmbed } = require('discord.js');
|
const { RichEmbed } = require('discord.js');
|
||||||
const moment = require('moment');
|
const moment = require('moment');
|
||||||
const { statuses, colors } = require('../../assets/json/user-info');
|
const statuses = {
|
||||||
|
online: "<:online:313956277808005120> Online",
|
||||||
|
idle: "<:away:313956277220802560> Idle",
|
||||||
|
dnd: "<:dnd:313956276893646850> Do Not Disturb",
|
||||||
|
offline: "<:offline:313956277237710868> Offline"
|
||||||
|
};
|
||||||
|
const colors = {
|
||||||
|
online: 0x00AE86,
|
||||||
|
idle: 0xFFFF00,
|
||||||
|
dnd: 0xFF0000,
|
||||||
|
offline: 0x808080
|
||||||
|
};
|
||||||
|
|
||||||
module.exports = class UserInfoCommand extends Command {
|
module.exports = class UserInfoCommand extends Command {
|
||||||
constructor(client) {
|
constructor(client) {
|
||||||
|
|||||||
Reference in New Issue
Block a user