diff --git a/Jupiter/GenericCommand.h b/Jupiter/GenericCommand.h index a162386..f1ecf39 100644 --- a/Jupiter/GenericCommand.h +++ b/Jupiter/GenericCommand.h @@ -105,13 +105,13 @@ namespace Jupiter #define BASE_GENERIC_COMMAND(CLASS) \ public: \ CLASS(); \ - GenericCommand::ResponseLine *trigger(const Jupiter::ReadableString ¶meters); \ + Jupiter::GenericCommand::ResponseLine *trigger(const Jupiter::ReadableString ¶meters); \ const Jupiter::ReadableString &getHelp(const Jupiter::ReadableString ¶meters); \ static CLASS instance; /** Expands to become the entire declaration for a generic command. In most cases, this will be sufficient. */ #define GENERIC_GENERIC_COMMAND(CLASS) \ -class CLASS : public GenericCommand { \ +class CLASS : public Jupiter::GenericCommand { \ BASE_GENERIC_COMMAND(CLASS) \ }; diff --git a/Release/Jupiter.lib b/Release/Jupiter.lib index 04b9d58..92ea547 100644 Binary files a/Release/Jupiter.lib and b/Release/Jupiter.lib differ