Browse Source

Adjust file only message

horse 4 years ago
parent
commit
b55646f877
1 changed files with 1 additions and 1 deletions
  1. 1 1
      bot/src/commands/file_only_channel_checker.ts

+ 1 - 1
bot/src/commands/file_only_channel_checker.ts

@@ -30,7 +30,7 @@ export class FileOnlyChannelChecker {
         let ch = msg.guild.channels.get(entry.warningMessageChannelId);
         
         if(ch instanceof TextChannel)
-            ch.send(`${msg.author.toString()} Channel ${msg.channel.toString()} is only meant for sharing links and files! Please don't post only text messages!`);
+            ch.send(`${msg.author.toString()} Channel ${msg.channel.toString()} is only meant for sharing links and files! If you want to post text-only messages, do so in ${ch.toString()}!`);
 
         return true;
     }