From 007196e5d47d09d4e5c13fbe68aeda19ed56587a Mon Sep 17 00:00:00 2001 From: Daniel Odendahl Jr Date: Wed, 12 Apr 2017 20:44:39 +0000 Subject: [PATCH] Improve More Stuff --- commands/textedit/morse.js | 2 +- commands/textedit/pirate.js | 2 +- commands/textedit/{pirateDictionary.json => piratewords.json} | 0 commands/textedit/temmie.js | 2 +- commands/textedit/{temmieDictionary.json => temmiewords.json} | 0 5 files changed, 3 insertions(+), 3 deletions(-) rename commands/textedit/{pirateDictionary.json => piratewords.json} (100%) rename commands/textedit/{temmieDictionary.json => temmiewords.json} (100%) 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