Added "fun" category
This commit is contained in:
parent
efdfdb52ba
commit
c7df52d202
7 changed files with 7 additions and 6 deletions
|
@ -5,7 +5,7 @@ class ImgurCommand extends Command {
|
||||||
constructor() {
|
constructor() {
|
||||||
super('imgur', {
|
super('imgur', {
|
||||||
aliases: ['badmeme', 'imgur'],
|
aliases: ['badmeme', 'imgur'],
|
||||||
category: 'general',
|
category: 'fun',
|
||||||
description: {
|
description: {
|
||||||
content: 'Send some random images from imgur',
|
content: 'Send some random images from imgur',
|
||||||
usage: '',
|
usage: '',
|
|
@ -5,7 +5,7 @@ class InspiroBotCommand extends Command {
|
||||||
constructor() {
|
constructor() {
|
||||||
super('InspiroBot', {
|
super('InspiroBot', {
|
||||||
aliases: ['inspirobot', 'ib'],
|
aliases: ['inspirobot', 'ib'],
|
||||||
category: 'general',
|
category: 'fun',
|
||||||
description: {
|
description: {
|
||||||
content: 'Send images from Inspirobot',
|
content: 'Send images from Inspirobot',
|
||||||
usage: '',
|
usage: '',
|
|
@ -6,7 +6,7 @@ class RedditCommand extends Command {
|
||||||
constructor() {
|
constructor() {
|
||||||
super('reddit', {
|
super('reddit', {
|
||||||
aliases: ['reddit'],
|
aliases: ['reddit'],
|
||||||
category: 'general',
|
category: 'fun',
|
||||||
args: [
|
args: [
|
||||||
{
|
{
|
||||||
id: 'sub',
|
id: 'sub',
|
|
@ -6,7 +6,7 @@ class spbCommand extends Command {
|
||||||
constructor() {
|
constructor() {
|
||||||
super('spb', {
|
super('spb', {
|
||||||
aliases: ['spb'],
|
aliases: ['spb'],
|
||||||
category: 'general',
|
category: 'fun',
|
||||||
args: [
|
args: [
|
||||||
{
|
{
|
||||||
id: 'link',
|
id: 'link',
|
|
@ -8,7 +8,7 @@ class TtsCommand extends Command {
|
||||||
constructor() {
|
constructor() {
|
||||||
super('tts', {
|
super('tts', {
|
||||||
aliases: ['tts'],
|
aliases: ['tts'],
|
||||||
category: 'general',
|
category: 'fun',
|
||||||
args: [
|
args: [
|
||||||
{
|
{
|
||||||
id: 'text',
|
id: 'text',
|
|
@ -8,7 +8,7 @@ class TtsvcCommand extends Command {
|
||||||
constructor() {
|
constructor() {
|
||||||
super('ttsvc', {
|
super('ttsvc', {
|
||||||
aliases: ['ttsvc'],
|
aliases: ['ttsvc'],
|
||||||
category: 'general',
|
category: 'fun',
|
||||||
split: 'none',
|
split: 'none',
|
||||||
args: [
|
args: [
|
||||||
{
|
{
|
|
@ -68,6 +68,7 @@ class HelpCommand extends Command {
|
||||||
for (const category of this.handler.categories.values()) {
|
for (const category of this.handler.categories.values()) {
|
||||||
const title = {
|
const title = {
|
||||||
general: '📝\u2000General',
|
general: '📝\u2000General',
|
||||||
|
fun: '🔩\u2000Fun',
|
||||||
images: '💕\u2000Images',
|
images: '💕\u2000Images',
|
||||||
utility: '⭐\u2000Utility',
|
utility: '⭐\u2000Utility',
|
||||||
admin: '😎\u2000Admin',
|
admin: '😎\u2000Admin',
|
||||||
|
|
Loading…
Reference in a new issue