diff options
Diffstat (limited to 'src/commandhandler.cpp')
-rw-r--r-- | src/commandhandler.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/commandhandler.cpp b/src/commandhandler.cpp index 5431cf88..19791aa8 100644 --- a/src/commandhandler.cpp +++ b/src/commandhandler.cpp @@ -252,7 +252,7 @@ void CommandHandler::handleHelp(const std::string &args) #else else if (args.substr(0, 5) == "party") { - playerParty->help(args); + eAthena::Party::help(args); #endif } else if (args == "present") @@ -526,7 +526,7 @@ void CommandHandler::handleParty(const std::string &args) } } else - playerParty->respond(command, rest); + eAthena::Party::respond(command, rest); #endif } |