Mobbook drop list update
Minor monster book drop list update.
This commit is contained in:
@@ -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) {
|
||||
|
||||
@@ -452,7 +452,7 @@ public abstract class AbstractDealDamageHandler extends AbstractMaplePacketHandl
|
||||
totDamageToOneMonster *= player.getLevel();
|
||||
}
|
||||
else {
|
||||
player.dropMessage(5, "You ran out of shells to use to activate the hidden power of Three Snails.");
|
||||
player.dropMessage(5, "You ran out of shells to activate the hidden power of Three Snails.");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user