summaryrefslogtreecommitdiff
path: root/src/commands.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/commands.cpp')
-rw-r--r--src/commands.cpp17
1 files changed, 0 insertions, 17 deletions
diff --git a/src/commands.cpp b/src/commands.cpp
index ed90a9d56..6cdc7cca4 100644
--- a/src/commands.cpp
+++ b/src/commands.cpp
@@ -251,23 +251,6 @@ static void outStringNormal(ChatTab *const tab,
}
}
-impHandler(createParty)
-{
- if (!event.tab)
- return false;
-
- if (event.args.empty())
- {
- // TRANSLATORS: create party message
- event.tab->chatLog(_("Party name is missing."), ChatMsgType::BY_SERVER);
- }
- else
- {
- Net::getPartyHandler()->create(event.args);
- }
- return true;
-}
-
impHandler(createGuild)
{
if (!event.tab || tmwServerVersion > 0)