diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-07-28 20:04:48 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-07-28 20:04:48 +0300 |
commit | 71ed8b67e2988e4452dde73643e8b609dc0a64cf (patch) | |
tree | 145d13832324ab2330cbd51997f55ec911cbc717 /src/localplayer.cpp | |
parent | e3c9839fb10cacf7c07f08e18d0c84c2e16fb828 (diff) | |
download | ManaVerse-71ed8b67e2988e4452dde73643e8b609dc0a64cf.tar.gz ManaVerse-71ed8b67e2988e4452dde73643e8b609dc0a64cf.tar.bz2 ManaVerse-71ed8b67e2988e4452dde73643e8b609dc0a64cf.tar.xz ManaVerse-71ed8b67e2988e4452dde73643e8b609dc0a64cf.zip |
move bools in localplayer.
Diffstat (limited to 'src/localplayer.cpp')
-rw-r--r-- | src/localplayer.cpp | 40 |
1 files changed, 20 insertions, 20 deletions
diff --git a/src/localplayer.cpp b/src/localplayer.cpp index 9342b6541..820295570 100644 --- a/src/localplayer.cpp +++ b/src/localplayer.cpp @@ -94,7 +94,6 @@ extern SkillDialog *skillDialog; LocalPlayer::LocalPlayer(const int id, const int subtype) : Being(id, PLAYER, subtype, nullptr), - mUpdateName(true), mGMLevel(0), mInvertDirection(0), mCrazyMoveType(config.getIntValue("crazyMoveType")), @@ -102,7 +101,6 @@ LocalPlayer::LocalPlayer(const int id, const int subtype) : mAttackWeaponType(config.getIntValue("attackWeaponType")), mQuickDropCounter(config.getIntValue("quickDropCounter")), mMoveState(0), - mDisableCrazyMove(false), mPickUpType(config.getIntValue("pickUpType")), mMagicAttackType(config.getIntValue("magicAttackType")), mPvpAttackType(config.getIntValue("pvpAttackType")), @@ -110,7 +108,6 @@ LocalPlayer::LocalPlayer(const int id, const int subtype) : mAttackType(config.getIntValue("attackType")), mFollowMode(config.getIntValue("followMode")), mImitationMode(config.getIntValue("imitationMode")), - mDisableGameModifiers(config.getBoolValue("disableGameModifiers")), mLastTargetX(0), mLastTargetY(0), mHomes(), @@ -120,11 +117,7 @@ LocalPlayer::LocalPlayer(const int id, const int subtype) : mNextDestX(0), mNextDestY(0), mPickUpTarget(nullptr), - mGoingToTarget(false), - mKeepAttacking(false), mLastAction(-1), - mWalkingDir(0), - mPathSetByMouse(false), mStatusEffectIcons(), mLocalWalkTime(-1), mMessages(), @@ -132,18 +125,8 @@ LocalPlayer::LocalPlayer(const int id, const int subtype) : mAwayListener(new AwayListener), mAwayDialog(nullptr), mPingSendTick(0), - mWaitPing(false), mPingTime(0), mAfkTime(0), - mAwayMode(false), - mPseudoAwayMode(false), - mShowNavigePath(false), - mIsServerBuggy(serverConfig.getValueBool("enableBuggyServers", true)), - mSyncPlayerMove(config.getBoolValue("syncPlayerMove")), - mDrawPath(config.getBoolValue("drawPath")), - mAttackMoving(config.getBoolValue("attackMoving")), - mAttackNext(config.getBoolValue("attackNext")), - mShowJobExp(config.getBoolValue("showJobExp")), mActivityTime(0), mNavigateX(0), mNavigateY(0), @@ -155,8 +138,6 @@ LocalPlayer::LocalPlayer(const int id, const int subtype) : mOldTileX(0), mOldTileY(0), mNavigatePath(), - mTargetDeadPlayers(config.getBoolValue("targetDeadPlayers")), - mServerAttack(config.getBoolValue("serverAttack")), mLastHitFrom(), mWaitFor(), mAdvertTime(0), @@ -164,11 +145,30 @@ LocalPlayer::LocalPlayer(const int id, const int subtype) : mTestParticleName(), mTestParticleTime(0), mTestParticleHash(0l), + mWalkingDir(0), + mUpdateName(true), mBlockAdvert(false), + mTargetDeadPlayers(config.getBoolValue("targetDeadPlayers")), + mServerAttack(config.getBoolValue("serverAttack")), mEnableAdvert(config.getBoolValue("enableAdvert")), mTradebot(config.getBoolValue("tradebot")), mTargetOnlyReachable(config.getBoolValue("targetOnlyReachable")), - mNextStep(false) + mDisableGameModifiers(config.getBoolValue("disableGameModifiers")), + mIsServerBuggy(serverConfig.getValueBool("enableBuggyServers", true)), + mSyncPlayerMove(config.getBoolValue("syncPlayerMove")), + mDrawPath(config.getBoolValue("drawPath")), + mAttackMoving(config.getBoolValue("attackMoving")), + mAttackNext(config.getBoolValue("attackNext")), + mShowJobExp(config.getBoolValue("showJobExp")), + mNextStep(false), + mDisableCrazyMove(false), + mGoingToTarget(false), + mKeepAttacking(false), + mPathSetByMouse(false), + mWaitPing(false), + mAwayMode(false), + mPseudoAwayMode(false), + mShowNavigePath(false) { logger->log1("LocalPlayer::LocalPlayer"); |