diff options
-rw-r--r-- | src/init.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/init.cpp b/src/init.cpp index 42d593d80..7ca404d7e 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -325,8 +325,8 @@ bool Anope::Init(int ac, char **av) Log(LOG_TERMINAL) << "-d, --debug[=level]"; Log(LOG_TERMINAL) << "-h, --help"; Log(LOG_TERMINAL) << " --localedir=locale directory"; - Log(LOG_TERMINAL) << " --logdir=logs directory"; - Log(LOG_TERMINAL) << " --modulesdir=modules directory"; + Log(LOG_TERMINAL) << " --logdir=log directory"; + Log(LOG_TERMINAL) << " --moduledir=module directory"; Log(LOG_TERMINAL) << "-e, --noexpire"; Log(LOG_TERMINAL) << "-n, --nofork"; Log(LOG_TERMINAL) << "-p, --nopid"; @@ -409,10 +409,10 @@ bool Anope::Init(int ac, char **av) Anope::LocaleDir = arg; } - if (GetCommandLineArgument("modulesdir", 0, arg)) + if (GetCommandLineArgument("moduledir", 0, arg)) { if (arg.empty()) - throw CoreException("The --modulesdir option requires a path"); + throw CoreException("The --moduledir option requires a path"); Anope::ModuleDir = arg; } |