summaryrefslogtreecommitdiff
path: root/src/actions/target.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2016-07-28 16:03:59 +0300
committerAndrei Karas <akaras@inbox.ru>2016-07-28 16:34:59 +0300
commitb96e6eeba6e1511568c8291bd8cb6a6d3706635c (patch)
treed021843c88d856f86f018547c30f1181290ffcbe /src/actions/target.cpp
parent60859a71dd9794b0216cc7a60146d417e06dbbad (diff)
downloadplus-b96e6eeba6e1511568c8291bd8cb6a6d3706635c.tar.gz
plus-b96e6eeba6e1511568c8291bd8cb6a6d3706635c.tar.bz2
plus-b96e6eeba6e1511568c8291bd8cb6a6d3706635c.tar.xz
plus-b96e6eeba6e1511568c8291bd8cb6a6d3706635c.zip
Remove define EATHENA_SUPPORT from all code.
Now eathena like support enabled always.
Diffstat (limited to 'src/actions/target.cpp')
-rw-r--r--src/actions/target.cpp12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/actions/target.cpp b/src/actions/target.cpp
index 4e0b46cd3..483fdffcb 100644
--- a/src/actions/target.cpp
+++ b/src/actions/target.cpp
@@ -60,29 +60,17 @@ impHandler0(targetNPC)
impHandler0(targetMercenary)
{
-#ifdef EATHENA_SUPPORT
return setTarget(ActorType::Mercenary, AllowSort_true);
-#else
- return false;
-#endif
}
impHandler0(targetSkillUnit)
{
-#ifdef EATHENA_SUPPORT
return setTarget(ActorType::SkillUnit, AllowSort_true);
-#else
- return false;
-#endif
}
impHandler0(targetPet)
{
-#ifdef EATHENA_SUPPORT
return setTarget(ActorType::Pet, AllowSort_true);
-#else
- return false;
-#endif
}
impHandler0(contextMenu)