Remove useless aliases, bug fixes

This commit is contained in:
Daniel Odendahl Jr
2018-11-03 18:21:19 +00:00
parent 01bc93b1ba
commit f9c37e7ea6
146 changed files with 206 additions and 312 deletions
-1
View File
@@ -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.',
+2 -2
View File
@@ -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: [
{
+1 -1
View File
@@ -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.',
+1 -1
View File
@@ -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.',