summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorErik Schilling <ablu.erikschilling@googlemail.com>2013-09-14 15:04:51 +0200
committerErik Schilling <ablu.erikschilling@googlemail.com>2013-09-14 15:05:17 +0200
commitd15190dc8cd8258fcdf06bb615de80bc97a5ac20 (patch)
tree1ac11c8cea9e8aeb83deecb8607083d4789be679 /src
parent4f4a517b369443c7b5860265e2a958543fc5a350 (diff)
downloadmanaserv-d15190dc8cd8258fcdf06bb615de80bc97a5ac20.tar.gz
manaserv-d15190dc8cd8258fcdf06bb615de80bc97a5ac20.tar.bz2
manaserv-d15190dc8cd8258fcdf06bb615de80bc97a5ac20.tar.xz
manaserv-d15190dc8cd8258fcdf06bb615de80bc97a5ac20.zip
Removed unused variable
Diffstat (limited to 'src')
-rw-r--r--src/game-server/effect.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/game-server/effect.h b/src/game-server/effect.h
index d4821e66..a2567a3b 100644
--- a/src/game-server/effect.h
+++ b/src/game-server/effect.h
@@ -36,7 +36,6 @@ class EffectComponent : public Component
EffectComponent(int id)
: mEffectId(id)
- , mCreationTick(GameState::getCurrentTick())
, mBeing(0)
{}
@@ -56,7 +55,6 @@ class EffectComponent : public Component
private:
int mEffectId;
- int mCreationTick;
Entity *mBeing;
};