mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-26 14:19:11 +02:00
Remove useless aliases, bug fixes
This commit is contained in:
@@ -6,7 +6,6 @@ module.exports = class CurrencyCommand extends Command {
|
||||
constructor(client) {
|
||||
super(client, {
|
||||
name: 'currency',
|
||||
aliases: ['currency-convert', 'convert-currency'],
|
||||
group: 'number-edit',
|
||||
memberName: 'currency',
|
||||
description: 'Converts currency from one currency to another.',
|
||||
|
||||
@@ -1,11 +1,11 @@
|
||||
const Command = require('../../structures/Command');
|
||||
const { above100, above92, above88, above80, below80 } = require('../../assets/json/final-grade-calculator');
|
||||
const { above100, above92, above88, above80, below80 } = require('../../assets/json/final-grade');
|
||||
|
||||
module.exports = class FinalGradeCommand extends Command {
|
||||
constructor(client) {
|
||||
super(client, {
|
||||
name: 'final-grade',
|
||||
aliases: ['final-grade-calculator', 'final-grade-calc', 'roger-hub'],
|
||||
aliases: ['final-grade-calculator', 'final-grade-calc'],
|
||||
group: 'number-edit',
|
||||
memberName: 'final-grade',
|
||||
description: 'Determines the grade you need to make on your final to get your desired course grade.',
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
const Command = require('../../structures/Command');
|
||||
const numerals = require('../../assets/json/roman-numeral');
|
||||
const numerals = require('../../assets/json/roman');
|
||||
|
||||
module.exports = class RomanNumeralCommand extends Command {
|
||||
module.exports = class RomanCommand extends Command {
|
||||
constructor(client) {
|
||||
super(client, {
|
||||
name: 'roman-numeral',
|
||||
aliases: ['roman'],
|
||||
name: 'roman',
|
||||
aliases: ['roman-numeral'],
|
||||
group: 'number-edit',
|
||||
memberName: 'roman-numeral',
|
||||
memberName: 'roman',
|
||||
description: 'Converts a number to roman numerals.',
|
||||
args: [
|
||||
{
|
||||
@@ -4,7 +4,7 @@ module.exports = class ScientificNotationCommand extends Command {
|
||||
constructor(client) {
|
||||
super(client, {
|
||||
name: 'scientific-notation',
|
||||
aliases: ['science-notation', 'e+', 'exponential-notation', 'exponential', 'scientific'],
|
||||
aliases: ['science-notation', 'exponential-notation'],
|
||||
group: 'number-edit',
|
||||
memberName: 'scientific-notation',
|
||||
description: 'Converts a number to scientific notation.',
|
||||
|
||||
@@ -6,7 +6,7 @@ module.exports = class UnitsCommand extends Command {
|
||||
constructor(client) {
|
||||
super(client, {
|
||||
name: 'units',
|
||||
aliases: ['convert-units', 'unit-converter', 'unit', 'convert'],
|
||||
aliases: ['convert'],
|
||||
group: 'number-edit',
|
||||
memberName: 'units',
|
||||
description: 'Converts units to/from other units.',
|
||||
|
||||
Reference in New Issue
Block a user