hellgates maybe? round 6

This commit is contained in:
2025-03-13 21:26:47 -05:00
parent e71ca71b30
commit 2612a7f074
+10
View File
@@ -1,6 +1,7 @@
package engine.objects;
import engine.gameManager.HellgateManager;
import engine.gameManager.LootManager;
import engine.gameManager.ZoneManager;
import engine.math.Vector3fImmutable;
import org.pmw.tinylog.Logger;
@@ -40,6 +41,15 @@ public class Hellgate {
public void init(){
HellgateManager.Spawn(this);
for(Mob mob : this.mobs){
mob.respawn();
LootManager.GenerateStrongholdLoot(mob,false,false);
}
for(Mob mob : this.mini_bosses){
mob.respawn();
LootManager.GenerateStrongholdLoot(mob,true,false);
}
LootManager.GenerateStrongholdLoot(this.boss,false,true);
}
}