forked from MagicBane/Server
r8 mob health fix
This commit is contained in:
@@ -1970,6 +1970,13 @@ public class Mob extends AbstractIntelligenceAgent {
|
|||||||
try {
|
try {
|
||||||
NPCManager.applyRuneSetEffects(this);
|
NPCManager.applyRuneSetEffects(this);
|
||||||
recalculateStats();
|
recalculateStats();
|
||||||
|
if(this.mobBase.getLevel() > 80){
|
||||||
|
if(this.getMobBaseID() == 14319){//ithriana
|
||||||
|
this.healthMax = 5400000;
|
||||||
|
} else{
|
||||||
|
this.healthMax = 1500000;
|
||||||
|
}
|
||||||
|
}
|
||||||
this.setHealth(this.healthMax);
|
this.setHealth(this.healthMax);
|
||||||
|
|
||||||
// Set bounds for this mobile
|
// Set bounds for this mobile
|
||||||
|
|||||||
Reference in New Issue
Block a user