diff options
Diffstat (limited to 'src/being')
-rw-r--r-- | src/being/attributes.h | 7 | ||||
-rw-r--r-- | src/being/localplayer.cpp | 2 |
2 files changed, 5 insertions, 4 deletions
diff --git a/src/being/attributes.h b/src/being/attributes.h index 6bd255f29..74ae7529e 100644 --- a/src/being/attributes.h +++ b/src/being/attributes.h @@ -39,15 +39,16 @@ namespace Attributes MONEY, TOTAL_WEIGHT, MAX_WEIGHT, - SKILL_POINTS, - CHAR_POINTS, - CORR_POINTS, + JOB = 10, STR = 13, AGI = 14, VIT = 15, INT = 16, DEX = 17, LUK = 18, + SKILL_POINTS, + CHAR_POINTS, + CORR_POINTS, ATTACK_DELAY = 100, ATTACK_RANGE = 101, WALK_SPEED = 102, diff --git a/src/being/localplayer.cpp b/src/being/localplayer.cpp index 3f775b321..b747c78bd 100644 --- a/src/being/localplayer.cpp +++ b/src/being/localplayer.cpp @@ -1037,7 +1037,7 @@ void LocalPlayer::statChanged(const int id, const int oldVal1, const int oldVal2) { - if (!mShowJobExp || id != playerHandler->getJobLocation()) + if (!mShowJobExp || id != Attributes::JOB) return; const std::pair<int, int> exp = PlayerInfo::getStatExperience(id); |