From 91e4a003fdcaa21e7d375d3eaf92ea9f6166b841 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Mon, 7 Mar 2016 22:05:12 +0300 Subject: Disable all legacy "magic" commands if server type not tmwa. --- src/being/localplayer.cpp | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src/being/localplayer.cpp') diff --git a/src/being/localplayer.cpp b/src/being/localplayer.cpp index a14bd3383..9cf739d74 100644 --- a/src/being/localplayer.cpp +++ b/src/being/localplayer.cpp @@ -84,6 +84,8 @@ #include "resources/sprite/animatedsprite.h" +#include "net/net.h" + #include "utils/delete2.h" #include "utils/gettext.h" #include "utils/timer.h" @@ -1612,6 +1614,10 @@ void LocalPlayer::specialMove(const unsigned char direction) void LocalPlayer::magicAttack() const { +#ifdef EATHENA_SUPPORT + if (Net::getNetworkType() != ServerType::TMWATHENA) + return; +#endif if (!chatWindow || !isAlive() || !playerHandler->canUseMagic()) { -- cgit v1.2.3-60-g2f50