Skip to content

Commit

Permalink
"add space between words"
Browse files Browse the repository at this point in the history
  • Loading branch information
Josee9988 committed Jun 21, 2021
1 parent 3fd3ecd commit b383325
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/commands/commands-controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ export default class CommandsController {
*/
private async setSendMsg(message: Message, msgToBeSet: string[]): Promise<void> {
let msg = "";
for (const word of msgToBeSet) msg += word;
for (const word of msgToBeSet) msg += word + "";
if (!checkIfUserIsAdmin(message)) return;
const server = await this.databaseController.findByServerId(message.guild.id);
if (server.channelId) {
Expand Down

0 comments on commit b383325

Please sign in to comment.