add mob adding stronghold mobs

This commit is contained in:
2025-03-12 20:40:12 -05:00
parent 9078a41c58
commit 2a7fd87686
2 changed files with 7 additions and 4 deletions
+2 -2
View File
@@ -890,8 +890,8 @@ public enum LootManager {
}
//present drop chance for all
if (ThreadLocalRandom.current().nextInt(100) < 35)
DropPresent(mob);
//if (ThreadLocalRandom.current().nextInt(100) < 35)
// DropPresent(mob);
//random contract drop chance for all
if (ThreadLocalRandom.current().nextInt(100) < 40) {
+5 -2
View File
@@ -1496,8 +1496,11 @@ public class Mob extends AbstractIntelligenceAgent {
if (isPlayerGuard)
return;
LootManager.GenerateMobLoot(this);
if(this.isHellgateMob){
LootManager.GenerateStrongholdLoot(this,false,false);
}else {
LootManager.GenerateMobLoot(this);
}
}
@Override