diff options
Diffstat (limited to 'src/playerinfo.cpp')
-rw-r--r-- | src/playerinfo.cpp | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/src/playerinfo.cpp b/src/playerinfo.cpp index 22c01516..a3e83c42 100644 --- a/src/playerinfo.cpp +++ b/src/playerinfo.cpp @@ -319,13 +319,12 @@ void logic() if ((mSpecialRechargeUpdateNeeded%11) == 0) { mSpecialRechargeUpdateNeeded = 0; - for (auto it = mSpecials.begin(), - it_end = mSpecials.end(); it != it_end; it++) + for (auto &special : mSpecials) { - it->second.currentMana += it->second.recharge; - if (it->second.currentMana > it->second.neededMana) + special.second.currentMana += special.second.recharge; + if (special.second.currentMana > special.second.neededMana) { - it->second.currentMana = it->second.neededMana; + special.second.currentMana = special.second.neededMana; } } } |