Skip to content

Commit

Permalink
Updating readme & help command
Browse files Browse the repository at this point in the history
  • Loading branch information
wpatter6 committed Oct 4, 2017
1 parent eb3ab10 commit 9789ab3
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 1 deletion.
2 changes: 2 additions & 0 deletions PokemonGoRaidBot/Configuration/Languages/en-us.json
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,8 @@
"helpDelete": "Deletes a raid post with the corresponding Id. Use `all` to delete all raids posted by you. Can only be done by admins or the poster of the raid.",
"helpMerge": "Merges [raid2] into [raid1]. Can only be done by admin or original poster of [raid2]. Only raid Unique Ids can be used to merge.",
"helpLocation": "Allows the poster of the raid or server managers to change the location of a post.",
"helpEnd": "Allows the poster of the raid or admin to change the end time on a post.",
"helpStart": "Allows a user to explicitly declare a start time for a group in the raid. This will be added to the post's information header.",
"helpPin": "Raids posted in the specified channel will be posted and pinned in the channel itself. Bot requires \"Manage Messages\" role permission to pin.",
"helpUnPin": "Removes channel from pin channels.",
"helpPinAll": "Adds all channels on the server to pin channels.",
Expand Down
2 changes: 2 additions & 0 deletions PokemonGoRaidBot/Configuration/Languages/nl-nl.json
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,8 @@
"helpDelete": "Deletes a raid post with the corresponding Id. Use `all` to delete all raids posted by you. Can only be done by admins or the poster of the raid.",
"helpMerge": "Merges [raid2] into [raid1]. Can only be done by admin or original poster of [raid2]. Only raid Unique Ids can be used to merge.",
"helpLocation": "Allows the poster of the raid or server managers to change the location of a post.",
"helpEnd": "Allows the poster of the raid or admin to change the end time on a post.",
"helpStart": "Allows a user to explicitly declare a start time for a group in the raid. This will be added to the post's information header.",
"helpPin": "Raids posted in the specified channel will be posted and pinned in the channel itself. Bot requires \"Manage Messages\" role permission to pin.",
"helpUnPin": "Removes channel from pin channels.",
"helpPinAll": "Adds all channels on the server to pin channels.",
Expand Down
2 changes: 1 addition & 1 deletion PokemonGoRaidBot/PokemonGoRaidBot.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
</ItemGroup>

<PropertyGroup>
<VersionPrefix>1.4.0</VersionPrefix>
<VersionPrefix>1.4.1</VersionPrefix>
</PropertyGroup>

<PropertyGroup>
Expand Down
2 changes: 2 additions & 0 deletions PokemonGoRaidBot/Services/Discord/DiscordMessageOutput.cs
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,8 @@ public IChatEmbed GetHelpEmbed(IBotConfiguration config, bool admin)
embed.AddField(string.Format("{0}__d__elete [raid id]", config.Prefix), Language.Strings["helpDelete"]);
embed.AddField(string.Format("{0}__m__erge [raid1] [raid2]", config.Prefix), Language.Strings["helpMerge"]);
embed.AddField(string.Format("{0}__loc__ation [raid] [new location]", config.Prefix), Language.Strings["helpLocation"]);
embed.AddField(string.Format("{0}__e__nd [raid] [new end time]", config.Prefix), Language.Strings["helpEnd"]);
embed.AddField(string.Format("{0}__s__tart [raid] [start time]", config.Prefix), Language.Strings["helpStart"]);
embed.AddField(string.Format("{0}__i__nfo [name]", config.Prefix), Language.Strings["helpInfo"]);
embed.AddField(string.Format("{0}__h__elp", config.Prefix), Language.Strings["helpHelp"]);

Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,8 @@
* `!(d)elete [raid]` Deletes a raid post with the corresponding Id. Use `all` to delete all raids posted by you. The thumbs down emoji reaction will delete the raid as well, if done by the raid poster or server admin.
* `!(m)erge [raid1] [raid2]` Merges `raid2` into `raid1`. Can only be done by admin or original poster of `raid2`.
* `!(loc)ation [raid] [new location]` Allows the poster of the raid or admin to change the location of a post.
* `!(e)nd [raid] [new end time]` Allows the poster of the raid or admin to change the end time on a post.
* `!(s)tart [raid] [start time]` Allows a user to explicitly declare a start time for a group in the raid. This will be added to the post's information header.
* `!(h)elp` Shows help message.

## Admin Commands:
Expand Down

0 comments on commit 9789ab3

Please sign in to comment.