summaryrefslogtreecommitdiff
path: root/src/game-server/item.cpp
diff options
context:
space:
mode:
authorErik Schilling <ablu.erikschilling@googlemail.com>2012-06-10 09:54:03 +0200
committerErik Schilling <ablu.erikschilling@googlemail.com>2013-01-08 16:58:57 +0100
commit0f0004ff3e286270c0425642a5669661ef6cb592 (patch)
treea692ef4ec410d80a93be88339ebade9036099760 /src/game-server/item.cpp
parent5f8ac3c36c88c4f6bf98a9877340b11e2bdd95e3 (diff)
downloadmanaserv-0f0004ff3e286270c0425642a5669661ef6cb592.tar.gz
manaserv-0f0004ff3e286270c0425642a5669661ef6cb592.tar.bz2
manaserv-0f0004ff3e286270c0425642a5669661ef6cb592.tar.xz
manaserv-0f0004ff3e286270c0425642a5669661ef6cb592.zip
Rename AutoAttack to Attack
Diffstat (limited to 'src/game-server/item.cpp')
-rw-r--r--src/game-server/item.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/game-server/item.cpp b/src/game-server/item.cpp
index d85a1615..15041ad2 100644
--- a/src/game-server/item.cpp
+++ b/src/game-server/item.cpp
@@ -25,7 +25,7 @@
#include "game-server/item.h"
#include "common/configuration.h"
-#include "game-server/autoattack.h"
+#include "game-server/attack.h"
#include "game-server/attributemanager.h"
#include "game-server/being.h"
#include "game-server/state.h"
@@ -47,13 +47,13 @@ void ItemEffectAttrMod::dispell(Being *itemUser)
mId, !mDuration);
}
-bool ItemEffectAutoAttack::apply(Being * /* itemUser */)
+bool ItemEffectAttack::apply(Being * /* itemUser */)
{
// TODO - STUB
return false;
}
-void ItemEffectAutoAttack::dispell(Being * /* itemUser */)
+void ItemEffectAttack::dispell(Being * /* itemUser */)
{
// TODO
}