mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-24 02:15:10 +02:00
Remove memberName (leftover Commando thing)
This commit is contained in:
@@ -27,7 +27,6 @@ module.exports = class AnimeAiringCommand extends Command {
|
||||
name: 'anime-airing',
|
||||
aliases: ['anichart', 'airing-anime', 'seasonal-anime', 'anime-seasonal'],
|
||||
group: 'events',
|
||||
memberName: 'anime-airing',
|
||||
description: 'Responds with a list of the anime that air today.',
|
||||
clientPermissions: [PermissionFlagsBits.EmbedLinks],
|
||||
credit: [
|
||||
|
||||
@@ -11,7 +11,6 @@ module.exports = class ApodCommand extends Command {
|
||||
name: 'apod',
|
||||
aliases: ['astronomy-picture-of-the-day'],
|
||||
group: 'events',
|
||||
memberName: 'apod',
|
||||
description: 'Responds with today\'s Astronomy Picture of the Day.',
|
||||
clientPermissions: [PermissionFlagsBits.EmbedLinks],
|
||||
credit: [
|
||||
|
||||
@@ -10,7 +10,6 @@ module.exports = class CalendarCommand extends Command {
|
||||
name: 'calendar',
|
||||
aliases: ['cal'],
|
||||
group: 'events',
|
||||
memberName: 'calendar',
|
||||
description: 'Responds with the calendar for a specific month and year.',
|
||||
args: [
|
||||
{
|
||||
|
||||
@@ -7,7 +7,6 @@ module.exports = class DaysSinceCommand extends Command {
|
||||
super(client, {
|
||||
name: 'days-since',
|
||||
group: 'events',
|
||||
memberName: 'days-since',
|
||||
description: 'Responds with how many days there have been since a certain date.',
|
||||
args: [
|
||||
{
|
||||
|
||||
@@ -8,7 +8,6 @@ module.exports = class DaysUntilCommand extends Command {
|
||||
name: 'days-until',
|
||||
aliases: ['countdown'],
|
||||
group: 'events',
|
||||
memberName: 'days-until',
|
||||
description: 'Responds with how many days there are until a certain date.',
|
||||
args: [
|
||||
{
|
||||
|
||||
@@ -13,7 +13,6 @@ module.exports = class FloridaManCommand extends Command {
|
||||
name: 'florida-man',
|
||||
aliases: ['florida'],
|
||||
group: 'events',
|
||||
memberName: 'florida-man',
|
||||
description: 'Responds with the Flordia man of the day.',
|
||||
clientPermissions: [PermissionFlagsBits.EmbedLinks],
|
||||
credit: [
|
||||
|
||||
@@ -8,7 +8,6 @@ module.exports = class GoogleDoodleCommand extends Command {
|
||||
super(client, {
|
||||
name: 'google-doodle',
|
||||
group: 'events',
|
||||
memberName: 'google-doodle',
|
||||
description: 'Responds with a Google Doodle, either the latest one or a random one from the past.',
|
||||
clientPermissions: [PermissionFlagsBits.AttachFiles],
|
||||
credit: [
|
||||
|
||||
@@ -10,7 +10,6 @@ module.exports = class HoroscopeCommand extends Command {
|
||||
super(client, {
|
||||
name: 'horoscope',
|
||||
group: 'events',
|
||||
memberName: 'horoscope',
|
||||
description: 'Responds with today\'s horoscope for a specific Zodiac sign.',
|
||||
details: `**Signs:** ${signs.join(', ')}`,
|
||||
clientPermissions: [PermissionFlagsBits.EmbedLinks],
|
||||
|
||||
@@ -7,7 +7,6 @@ module.exports = class IsLeapCommand extends Command {
|
||||
name: 'is-leap',
|
||||
aliases: ['is-leap-year', 'leap-year', 'leap'],
|
||||
group: 'events',
|
||||
memberName: 'is-leap',
|
||||
description: 'Responds with if a year is a leap year.',
|
||||
args: [
|
||||
{
|
||||
|
||||
@@ -6,7 +6,6 @@ module.exports = class IsTuesdayCommand extends Command {
|
||||
name: 'is-tuesday',
|
||||
aliases: ['is-it-tuesday', 'tuesday'],
|
||||
group: 'events',
|
||||
memberName: 'is-tuesday',
|
||||
description: 'Determines if today is Tuesday.'
|
||||
});
|
||||
}
|
||||
|
||||
@@ -13,7 +13,6 @@ module.exports = class NekoAtsumePasswordCommand extends Command {
|
||||
name: 'neko-atsume-password',
|
||||
aliases: ['neko-atsume', 'neko-password', 'neko-atsume-pswd', 'neko-pswd'],
|
||||
group: 'events',
|
||||
memberName: 'neko-atsume-password',
|
||||
description: 'Responds with today\'s Neko Atsume password.',
|
||||
details: `**Locales:** ${locales.join(', ')}`,
|
||||
credit: [
|
||||
|
||||
@@ -8,7 +8,6 @@ module.exports = class TimeCommand extends Command {
|
||||
name: 'time',
|
||||
aliases: ['time-zone'],
|
||||
group: 'events',
|
||||
memberName: 'time',
|
||||
description: 'Responds with the current time in a particular location.',
|
||||
details: '**Zones:** <https://en.wikipedia.org/wiki/List_of_tz_database_time_zones>',
|
||||
credit: [
|
||||
|
||||
@@ -9,7 +9,6 @@ module.exports = class TodayInHistoryCommand extends Command {
|
||||
name: 'today-in-history',
|
||||
aliases: ['today', 'history'],
|
||||
group: 'events',
|
||||
memberName: 'today-in-history',
|
||||
description: 'Responds with an event that occurred today in history.',
|
||||
clientPermissions: [PermissionFlagsBits.EmbedLinks],
|
||||
credit: [
|
||||
|
||||
@@ -10,7 +10,6 @@ module.exports = class UsElectionCommand extends Command {
|
||||
name: 'us-election',
|
||||
aliases: ['election', 'usa-election', 'presidential-election', 'president-election', `${year}-election`],
|
||||
group: 'events',
|
||||
memberName: 'us-election',
|
||||
description: 'Responds with the odds of each canidate winning the presidential election.',
|
||||
credit: [
|
||||
{
|
||||
|
||||
@@ -10,7 +10,6 @@ module.exports = class WordOfTheDayCommand extends Command {
|
||||
name: 'word-of-the-day',
|
||||
aliases: ['daily-word', 'wotd', 'word-of-day'],
|
||||
group: 'events',
|
||||
memberName: 'word-of-the-day',
|
||||
description: 'Responds with today\'s word of the day.',
|
||||
credit: [
|
||||
{
|
||||
|
||||
@@ -6,7 +6,6 @@ module.exports = class YearProgressCommand extends Command {
|
||||
name: 'year-progress',
|
||||
aliases: ['year', 'year-prog', 'y-progress', 'y-prog'],
|
||||
group: 'events',
|
||||
memberName: 'year-progress',
|
||||
description: 'Responds with the progress of the current year.'
|
||||
});
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user