fixed scourge mother vorg drops

This commit is contained in:
2024-03-14 19:13:58 -05:00
parent a492e833e8
commit 5bfeafe8bf
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -393,7 +393,7 @@ public enum LootManager {
dropCount = 1;
//break; // Exit on first successful roll.
}
if(ml != null && genericIB.isVorg()){
if(ml != null && genericIB.isVorg() && mob.getMobBaseID() != 14062){
ml.setIsID(true);
ml.setDurabilityCurrent(ml.getDurabilityMax());
mob.getCharItemManager().addItemToInventory(ml);
+1 -1
View File
@@ -1738,7 +1738,7 @@ public class Mob extends AbstractIntelligenceAgent {
}
for(MobEquipment equipped: this.equip.values()){
if(equipped.getItemBase().isVorg()){
if(equipped.getItemBase().isVorg() && this.getMobBaseID() != 14062){
this.healthMax = 7500;
this.setHealth(this.healthMax);
this.level = 65;