diff options
author | Jared Adams <jaxad0127@gmail.com> | 2010-02-08 16:20:39 -0700 |
---|---|---|
committer | Jared Adams <jaxad0127@gmail.com> | 2010-02-08 16:20:39 -0700 |
commit | 308302f858d24d2cc1b1601b100324e2baa50765 (patch) | |
tree | bf76a3e5feb37fc700dbb2738f3b8c1c0f0fc655 /src/commandhandler.h | |
parent | a4007a7f8f253e90bb189cfb22b3e0c798440bdc (diff) | |
download | mana-308302f858d24d2cc1b1601b100324e2baa50765.tar.gz mana-308302f858d24d2cc1b1601b100324e2baa50765.tar.bz2 mana-308302f858d24d2cc1b1601b100324e2baa50765.tar.xz mana-308302f858d24d2cc1b1601b100324e2baa50765.zip |
Move party creation command from eA's PartyTab to CommandHandler
Also fix party invite by name when you aren't in a party.
Diffstat (limited to 'src/commandhandler.h')
-rw-r--r-- | src/commandhandler.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/commandhandler.h b/src/commandhandler.h index 4c108816..0ad513ea 100644 --- a/src/commandhandler.h +++ b/src/commandhandler.h @@ -104,6 +104,11 @@ class CommandHandler void handleClear(const std::string &args, ChatTab *tab); /** + * Handle a createparty command. + */ + void handleCreateParty(const std::string &args, ChatTab *tab); + + /** * Handle a party command. */ void handleParty(const std::string &args, ChatTab *tab); |