mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-21 05:54:33 +02:00
Remove useless aliases, bug fixes
This commit is contained in:
@@ -6,7 +6,6 @@ module.exports = class Base64Command extends Command {
|
||||
constructor(client) {
|
||||
super(client, {
|
||||
name: 'base64',
|
||||
aliases: ['base-64'],
|
||||
group: 'text-edit',
|
||||
memberName: 'base64',
|
||||
description: 'Converts text to/from Base64.',
|
||||
|
||||
@@ -6,7 +6,6 @@ module.exports = class FancyCommand extends Command {
|
||||
constructor(client) {
|
||||
super(client, {
|
||||
name: 'fancy',
|
||||
aliases: ['fancy-letters'],
|
||||
group: 'text-edit',
|
||||
memberName: 'fancy',
|
||||
description: 'Converts text to fancy letters.',
|
||||
|
||||
@@ -5,7 +5,6 @@ module.exports = class MD5Command extends Command {
|
||||
constructor(client) {
|
||||
super(client, {
|
||||
name: 'md5',
|
||||
aliases: ['md5-hash'],
|
||||
group: 'text-edit',
|
||||
memberName: 'md5',
|
||||
description: 'Creates a hash of text with the MD5 algorithm.',
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
const Command = require('../../structures/Command');
|
||||
const { shuffle, firstUpperCase } = require('../../util/Util');
|
||||
|
||||
module.exports = class OrganizationXIIINameCommand extends Command {
|
||||
module.exports = class NobodyNameCommand extends Command {
|
||||
constructor(client) {
|
||||
super(client, {
|
||||
name: 'organization-xiii-name',
|
||||
aliases: ['organization-xiii', 'org-xiii-name', 'org-xiii', 'organization-name', 'org-name', 'nobody-name'],
|
||||
name: 'nobody-name',
|
||||
aliases: ['organization-name', 'org-name', 'organization-xiii-name'],
|
||||
group: 'text-edit',
|
||||
memberName: 'organization-xiii-name',
|
||||
memberName: 'nobody-name',
|
||||
description: 'Converts a name into the Organization XIII style.',
|
||||
args: [
|
||||
{
|
||||
@@ -5,6 +5,7 @@ module.exports = class OwOCommand extends Command {
|
||||
constructor(client) {
|
||||
super(client, {
|
||||
name: 'owo',
|
||||
aliases: ['furry-speak', 'fur-speak'],
|
||||
group: 'text-edit',
|
||||
memberName: 'owo',
|
||||
description: 'OwO.',
|
||||
|
||||
@@ -4,7 +4,7 @@ module.exports = class PortalSendCommand extends Command {
|
||||
constructor(client) {
|
||||
super(client, {
|
||||
name: 'portal-send',
|
||||
aliases: ['send-portal-message', 'portal-message', 'send-portal-msg', 'portal-msg', 'portal'],
|
||||
aliases: ['portal'],
|
||||
group: 'text-edit',
|
||||
memberName: 'portal-send',
|
||||
description: 'Send a message to a portal channel.',
|
||||
|
||||
@@ -5,7 +5,6 @@ module.exports = class SHA1Command extends Command {
|
||||
constructor(client) {
|
||||
super(client, {
|
||||
name: 'sha-1',
|
||||
aliases: ['sha-1-hash'],
|
||||
group: 'text-edit',
|
||||
memberName: 'sha-1',
|
||||
description: 'Creates a hash of text with the SHA-1 algorithm.',
|
||||
|
||||
@@ -5,7 +5,6 @@ module.exports = class SHA256Command extends Command {
|
||||
constructor(client) {
|
||||
super(client, {
|
||||
name: 'sha-256',
|
||||
aliases: ['sha-256-hash'],
|
||||
group: 'text-edit',
|
||||
memberName: 'sha-256',
|
||||
description: 'Creates a hash of text with the SHA-256 algorithm.',
|
||||
|
||||
@@ -1,14 +1,14 @@
|
||||
const Command = require('../../structures/Command');
|
||||
const { letterTrans } = require('custom-translate');
|
||||
const dictionary = require('../../assets/json/alphabet-reverse');
|
||||
const dictionary = require('../../assets/json/tebahpla');
|
||||
|
||||
module.exports = class AlphabetReverseCommand extends Command {
|
||||
module.exports = class TebahplaCommand extends Command {
|
||||
constructor(client) {
|
||||
super(client, {
|
||||
name: 'alphabet-reverse',
|
||||
aliases: ['reverse-alphabet', 'tebahpla'],
|
||||
name: 'tebahpla',
|
||||
aliases: ['reverse-alphabet', 'alphabet-reverse'],
|
||||
group: 'text-edit',
|
||||
memberName: 'alphabet-reverse',
|
||||
memberName: 'tebahpla',
|
||||
description: 'Reverses the alphabet of text.',
|
||||
args: [
|
||||
{
|
||||
@@ -5,7 +5,6 @@ module.exports = class ZalgoCommand extends Command {
|
||||
constructor(client) {
|
||||
super(client, {
|
||||
name: 'zalgo',
|
||||
aliases: ['zalgolize'],
|
||||
group: 'text-edit',
|
||||
memberName: 'zalgo',
|
||||
description: 'Converts text to zalgo.',
|
||||
|
||||
Reference in New Issue
Block a user