diff --git a/src/Bot/BotCommands.fs b/src/Bot/BotCommands.fs
index a36c1f1569b2bf0b5c476514573932c7b5f02d98..e9b43d2ae909cef3614800b8f6d11758a8cae853 100644
--- a/src/Bot/BotCommands.fs
+++ b/src/Bot/BotCommands.fs
@@ -26,20 +26,3 @@ module BotCommands =
            | true  -> ctx.RespondAsync "This is now my channel :)"   |> ignore
            | false -> ctx.RespondAsync "This is now your channel (:" |> ignore
       } |> Async.StartAsTask :> Task 
-
-    [<Command("help")>]
-    member public self.help(ctx:CommandContext) =
-      async { 
-        ctx.RespondAsync 
-        """
-        Hello! This is the WikiMathBot
-
-        Here are some commands you can use:
-        !echo <something> - Test whether I'm awake or not
-        !help             - Display this message
-        !hi               - Same as !echo
-        !toggle           - Toggle my notifications in this channel
-        """ 
-        |> ignore
-      }
-      |> Async.StartAsTask :> Task
\ No newline at end of file