Skip to content
This repository has been archived by the owner on Jun 6, 2021. It is now read-only.

Commit

Permalink
Merge pull request #3 from condolent/develop
Browse files Browse the repository at this point in the history
Invalid arg bug
  • Loading branch information
jonteohr authored May 15, 2020
2 parents 77be28b + ff07b8a commit 52575f2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public void onGuildMessageReceived(GuildMessageReceivedEvent e) {
return;
// Not enough arguments
if(args.length < 3) {
e.getChannel().sendMessage(":x: **Incorrect usage!**\nCorrect usage: `" + App.prefix + "protect <#channel> <password>`").queue();
e.getChannel().sendMessage(":x: **Incorrect usage!**\nCorrect usage: `" + App.prefix + "protect <password> <#channel>`").queue();
return;
}

Expand Down

0 comments on commit 52575f2

Please sign in to comment.