forked from MagicBane/Server
fixed scourge mother vorg drops
This commit is contained in:
@@ -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);
|
||||
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user