diff options
Diffstat (limited to 'src/being/localplayer.cpp')
-rw-r--r-- | src/being/localplayer.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/being/localplayer.cpp b/src/being/localplayer.cpp index df69ffb38..bf1167b5e 100644 --- a/src/being/localplayer.cpp +++ b/src/being/localplayer.cpp @@ -1231,7 +1231,7 @@ void LocalPlayer::statChanged(const AttributesT id, { if (!mShowJobExp || id != Attributes::PLAYER_JOB || - serverFeatures->haveExpPacket()) + Net::getNetworkType() == ServerType::EATHENA) { return; } @@ -1254,7 +1254,7 @@ void LocalPlayer::attributeChanged(const AttributesT id, { case Attributes::PLAYER_EXP: { - if (serverFeatures->haveExpPacket()) + if (Net::getNetworkType() == ServerType::EATHENA) break; if (oldVal > newVal) break; |