diff --git a/PokemonGoRaidBot/Configuration/Languages/en-us.json b/PokemonGoRaidBot/Configuration/Languages/en-us.json
index 5787f5c..1fddd90 100644
--- a/PokemonGoRaidBot/Configuration/Languages/en-us.json
+++ b/PokemonGoRaidBot/Configuration/Languages/en-us.json
@@ -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.",
diff --git a/PokemonGoRaidBot/Configuration/Languages/nl-nl.json b/PokemonGoRaidBot/Configuration/Languages/nl-nl.json
index 440c794..289dc1b 100644
--- a/PokemonGoRaidBot/Configuration/Languages/nl-nl.json
+++ b/PokemonGoRaidBot/Configuration/Languages/nl-nl.json
@@ -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.",
diff --git a/PokemonGoRaidBot/PokemonGoRaidBot.csproj b/PokemonGoRaidBot/PokemonGoRaidBot.csproj
index eb944a5..a9f3dd5 100644
--- a/PokemonGoRaidBot/PokemonGoRaidBot.csproj
+++ b/PokemonGoRaidBot/PokemonGoRaidBot.csproj
@@ -47,7 +47,7 @@
- 1.4.0
+ 1.4.1
diff --git a/PokemonGoRaidBot/Services/Discord/DiscordMessageOutput.cs b/PokemonGoRaidBot/Services/Discord/DiscordMessageOutput.cs
index 012b03b..5978bf1 100644
--- a/PokemonGoRaidBot/Services/Discord/DiscordMessageOutput.cs
+++ b/PokemonGoRaidBot/Services/Discord/DiscordMessageOutput.cs
@@ -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"]);
diff --git a/README.md b/README.md
index 6eae2c9..6ce5254 100644
--- a/README.md
+++ b/README.md
@@ -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: