top of the hour disc spawns

This commit is contained in:
2024-04-22 19:25:50 -05:00
parent 1567b22fe4
commit 3c1a217ac6
2 changed files with 11 additions and 5 deletions
+11
View File
@@ -1746,6 +1746,17 @@ public class Mob extends AbstractIntelligenceAgent {
this.level = 65;
}
}
for(Item loot : this.charItemManager.getInventory()){
if(loot.getItemBase().isDiscRune() && this.level < 80){
if(this.firstSpawn) {
this.killCharacter("first spawn");
this.firstSpawn = false;
if(this.despawned == false)
this.despawn();
}
}
}
}
@Override