Mobbook drop list update

Minor monster book drop list update.
This commit is contained in:
ronancpl
2018-02-02 21:41:40 -02:00
parent 2d932a9e12
commit 58dce72979
4 changed files with 101 additions and 73 deletions

View File

@@ -587,7 +587,7 @@ public class MapleCharacter extends AbstractAnimatedMapleMapObject {
recalcLocalStats();
}
public int addHP(MapleClient c) {
public static int addHP(MapleClient c) {
MapleCharacter player = c.getPlayer();
MapleJob jobtype = player.getJob();
int MaxHP = player.getMaxHp();
@@ -618,7 +618,7 @@ public class MapleCharacter extends AbstractAnimatedMapleMapObject {
return MaxHP;
}
public int addMP(MapleClient c) {
public static int addMP(MapleClient c) {
MapleCharacter player = c.getPlayer();
int MaxMP = player.getMaxMp();
if (player.getHpMpApUsed() > 9999 || player.getMaxMp() >= 30000) {