From 54d236a5195f4b64dc87cc506a141c464728e185 Mon Sep 17 00:00:00 2001 From: Noikoio Date: Sun, 5 May 2019 12:29:13 -0700 Subject: [PATCH] Change bot prefix for debug builds --- BirthdayBot/UserInterface/CommandsCommon.vb | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/BirthdayBot/UserInterface/CommandsCommon.vb b/BirthdayBot/UserInterface/CommandsCommon.vb index 2fbf50e..4aed0d3 100644 --- a/BirthdayBot/UserInterface/CommandsCommon.vb +++ b/BirthdayBot/UserInterface/CommandsCommon.vb @@ -6,7 +6,12 @@ Imports NodaTime ''' Common base class for common constants and variables. ''' Friend MustInherit Class CommandsCommon +#If DEBUG Then + Public Const CommandPrefix = "bt." +#End If +#If Not DEBUG Then Public Const CommandPrefix = "bb." +#End If Public Const GenericError = ":x: Invalid usage. Consult the help command." Public Const BadUserError = ":x: Unable to find user. Specify their `@` mention or their ID." Public Const ExpectedNoParametersError = ":x: This command does not take parameters. Did you mean to use another?"