Skip to content

Commit

Permalink
Updated help text
Browse files Browse the repository at this point in the history
  • Loading branch information
byBlurr committed Jun 27, 2019
1 parent c2350cb commit 64fe8e7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Globals/CommandModules/AboutModule.cs
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public async Task HelpAsync()
"- `!create` - Create the Globals category and channels in your server. Will only create the channels you have enabled.\n" +
"- `!update` - Will delete and create the added or removed channels, make sure you do this everytime you add or remove channels.\n" +
"\n**Global Commands**\nCommands that are only available in the global channels.\n" +
"- `!profile <user>` - View the profile of another user. User @user if they're in the same server as you or their user id if not. User id is in the footer of their message.\n" +
"- `!profile <user>` - View the profile of another user. User @user if they're in the same server as you or their globals id (GId) if not. GId is in the footer of their message.\n" +
"- `!request <feature>` - Suggest new features for the global chat or Discord server, remember to be descriptive! We may message you for more information.\n" +
"\n**Other Commands**\nOther commands for you to try out\n" +
"- `!help` - Brings up this message derp...\n" +
Expand Down
4 changes: 2 additions & 2 deletions Globals/CommandModules/GlobalModule.cs
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ public async Task ProfileIdAsync(int ID = -1)
}
else
{
var message = await Context.Channel.SendMessageAsync("Correct format of this command is `!profile <user>`, for example `!profile @Blurr#3760` or `!profile 211938243535568896`.\nIf the user is not in the same server as you, you must use the user id.");
var message = await Context.Channel.SendMessageAsync("Correct format of this command is `!profile <user>`, for example using mention `!profile @Blurr#3760` or using GId `!profile 2`.\nIf the user is not in the same server as you, you must use the globals id (GId).");
await Delete.DeleteMessage(message);
}
}
Expand Down Expand Up @@ -144,7 +144,7 @@ public async Task ProfileAsync(IUser User = null)
}
else
{
var message = await Context.Channel.SendMessageAsync("Correct format of this command is `!profile <user>`, for example `!profile @Blurr#3760` or `!profile 211938243535568896`.\nIf the user is not in the same server as you, you must use the user id.");
var message = await Context.Channel.SendMessageAsync("Correct format of this command is `!profile <user>`, for example using mention `!profile @Blurr#3760` or using GId `!profile 2`.\nIf the user is not in the same server as you, you must use the globals id (GId).");
await Delete.DeleteMessage(message);
}
}
Expand Down

0 comments on commit 64fe8e7

Please sign in to comment.