diff options
-rw-r--r-- | src/localplayer.cpp | 2 | ||||
-rw-r--r-- | src/localplayer.h | 2 |
2 files changed, 1 insertions, 3 deletions
diff --git a/src/localplayer.cpp b/src/localplayer.cpp index 017668dc..11c142cc 100644 --- a/src/localplayer.cpp +++ b/src/localplayer.cpp @@ -115,7 +115,7 @@ LocalPlayer::LocalPlayer(int id, int job, Map *map): mTotalWeight(1), mMaxWeight(1), mHp(1), mMaxHp(1), mTarget(NULL), mPickUpTarget(NULL), - mTrading(false), mGoingToTarget(false), + mTrading(false), mGoingToTarget(false), mKeepAttacking(false), mLastAction(-1), mWalkingDir(0), mDestX(0), mDestY(0), diff --git a/src/localplayer.h b/src/localplayer.h index e67630b2..38995896 100644 --- a/src/localplayer.h +++ b/src/localplayer.h @@ -475,8 +475,6 @@ class LocalPlayer : public Player bool mMapInitialized; /** Whether or not the map is available yet */ - float mLastAttackTime; /**< Used to synchronize the charge dialog */ - const std::auto_ptr<Equipment> mEquipment; protected: |