diff options
Diffstat (limited to 'src/actions/commands.cpp')
-rw-r--r-- | src/actions/commands.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/actions/commands.cpp b/src/actions/commands.cpp index dd93da0e8..07cd0c64e 100644 --- a/src/actions/commands.cpp +++ b/src/actions/commands.cpp @@ -46,6 +46,7 @@ #include "net/chathandler.h" #include "net/guildhandler.h" #include "net/homunculushandler.h" +#include "net/partyhandler.h" #include "net/pethandler.h" #include "net/serverfeatures.h" @@ -814,4 +815,10 @@ impHandler0(fireHomunculus) return true; } +impHandler0(leaveParty) +{ + partyHandler->leave(); + return true; +} + } // namespace Actions |