Fix NPE when custom code changes a player's HP (#458)

This commit is contained in:
CanIGetaPR
2019-05-01 12:24:27 -04:00
committed by Ronan Lana
parent 4df2a22422
commit 1213fff1ed

View File

@@ -8605,9 +8605,10 @@ public class MapleCharacter extends AbstractMapleCharacterObject {
} }
} }
}; };
if (map != null) {
map.registerCharacterStatUpdate(r); map.registerCharacterStatUpdate(r);
} }
}
private Pair<MapleStat, Integer> calcHpRatioUpdate(int newHp, int oldHp) { private Pair<MapleStat, Integer> calcHpRatioUpdate(int newHp, int oldHp) {
int delta = newHp - oldHp; int delta = newHp - oldHp;