diff options
Diffstat (limited to 'src/being/localplayer.cpp')
-rw-r--r-- | src/being/localplayer.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/being/localplayer.cpp b/src/being/localplayer.cpp index 91a601711..1d0fd92aa 100644 --- a/src/being/localplayer.cpp +++ b/src/being/localplayer.cpp @@ -1085,8 +1085,9 @@ void LocalPlayer::addJobMessage(const int change) { MessagePair pair = mMessages.back(); // TRANSLATORS: this is normal experience - if (pair.first.find(strprintf(" %s", _("xp"))) - == pair.first.size() - strlen(_("xp")) - 1) + if (pair.first.find(strprintf(" %s", _("xp"))) == + // TRANSLATORS: this is normal experience + pair.first.size() - strlen(_("xp")) - 1) { mMessages.pop_back(); // TRANSLATORS: this is job experience |