diff options
Diffstat (limited to 'src/modules/move.js')
| -rw-r--r-- | src/modules/move.js | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/modules/move.js b/src/modules/move.js index 973143d..cdfb781 100644 --- a/src/modules/move.js +++ b/src/modules/move.js @@ -41,7 +41,7 @@ module.exports = ({ bot, knex, config, commands }) => { }); if (containsRankings[0][1] === 0) { - thread.postSystemMessage('No matching category'); + thread.postSystemMessage('No matching category'.``); return; } @@ -52,7 +52,7 @@ module.exports = ({ bot, knex, config, commands }) => { parentID: targetCategory.id }); } catch (e) { - thread.postSystemMessage(`Failed to move thread: ${e.message}`); + thread.postSystemMessage(`Failed to move thread: ${e.message}.`); return; } @@ -72,11 +72,11 @@ module.exports = ({ bot, knex, config, commands }) => { permission_overwrites: newPerms }); } catch (e) { - thread.postSystemMessage(`Thread moved to ${targetCategory.name.toUpperCase()}, but failed to sync permissions: ${e.message}`); + thread.postSystemMessage(`Thread moved to ${targetCategory.name.toUpperCase()}, but failed to sync permissions: ${e.message}.`); return; } } - thread.postSystemMessage(`Thread moved to ${targetCategory.name.toUpperCase()}`); + thread.postSystemMessage(`Thread moved to ${targetCategory.name.toUpperCase()}.`); }); }; |