summaryrefslogtreecommitdiff
path: root/src/actions/commands.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/actions/commands.cpp')
-rw-r--r--src/actions/commands.cpp8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/actions/commands.cpp b/src/actions/commands.cpp
index 692837ce6..c8829970f 100644
--- a/src/actions/commands.cpp
+++ b/src/actions/commands.cpp
@@ -40,8 +40,9 @@
#include "net/adminhandler.h"
#include "net/chathandler.h"
#include "net/guildhandler.h"
-#include "net/pethandler.h"
#include "net/net.h"
+#include "net/pethandler.h"
+#include "net/serverfeatures.h"
#include "utils/chatutils.h"
#include "utils/gettext.h"
@@ -411,8 +412,11 @@ impHandler(sendMail)
impHandler(info)
{
- if (!event.tab || !localPlayer || tmwServerVersion > 0)
+ if (!event.tab || !localPlayer
+ || !Net::getServerFeatures()->haveNativeGuilds())
+ {
return false;
+ }
switch (event.tab->getType())
{