hellgates maybe? round 5

This commit is contained in:
2025-03-13 21:24:03 -05:00
parent 6db31794fc
commit e71ca71b30
@@ -42,6 +42,7 @@ public class HellgateManager {
LootManager.GenerateStrongholdLoot(mob,true,false);
hellgate.mini_bosses.add(mob);
mob.setObjectUUID(Integer.MAX_VALUE - (10000 + offsetUID));
DbManager.addToCache(mob);
offsetUID++;
for(int i = 0; i < 5; i++){
Mob minion = CreateHellgateMob();
@@ -52,6 +53,7 @@ public class HellgateManager {
LootManager.GenerateStrongholdLoot(minion,false,false);
hellgate.mobs.add(minion);
minion.setObjectUUID(Integer.MAX_VALUE - (10000 + offsetUID));
DbManager.addToCache(minion);
offsetUID++;
}
}
@@ -64,6 +66,7 @@ public class HellgateManager {
LootManager.GenerateStrongholdLoot(mob,false,true);
hellgate.boss = mob;
mob.setObjectUUID(Integer.MAX_VALUE - (10000 + offsetUID));
DbManager.addToCache(mob);
offsetUID++;
}