diff --git a/commands/textedit/morse.js b/commands/textedit/morse.js index 2e387989..f9c6ce25 100644 --- a/commands/textedit/morse.js +++ b/commands/textedit/morse.js @@ -37,7 +37,7 @@ const morse = { "7": "--...", "8": "---..", "9": "----.", - " ": " ", + " ": "/", ".": ".-.-.-", "?": "..--..", ",": "--..--", diff --git a/commands/textedit/pirate.js b/commands/textedit/pirate.js index 29747503..4c4b3572 100644 --- a/commands/textedit/pirate.js +++ b/commands/textedit/pirate.js @@ -1,6 +1,6 @@ const { Command } = require('discord.js-commando'); const translator = require('../../functions/translator.js'); -const { dictionary } = require('./pirateDictionary.json'); +const { dictionary } = require('./piratewords.json'); module.exports = class PirateCommand extends Command { constructor(client) { diff --git a/commands/textedit/pirateDictionary.json b/commands/textedit/piratewords.json similarity index 100% rename from commands/textedit/pirateDictionary.json rename to commands/textedit/piratewords.json diff --git a/commands/textedit/temmie.js b/commands/textedit/temmie.js index 91f7023f..a01d21b6 100644 --- a/commands/textedit/temmie.js +++ b/commands/textedit/temmie.js @@ -1,6 +1,6 @@ const { Command } = require('discord.js-commando'); const translator = require('../../functions/translator.js'); -const { dictionary } = require('./temmieDictionary.json'); +const { dictionary } = require('./temmiewords.json'); module.exports = class TemmieCommand extends Command { constructor(client) { diff --git a/commands/textedit/temmieDictionary.json b/commands/textedit/temmiewords.json similarity index 100% rename from commands/textedit/temmieDictionary.json rename to commands/textedit/temmiewords.json