delete stronghold mobs form DB when finished

This commit is contained in:
2024-07-08 21:03:08 -05:00
parent f3041e7549
commit 99ad6f3712
@@ -84,7 +84,7 @@ public class StrongholdManager {
guard.atrHandOne = 1800; guard.atrHandOne = 1800;
guard.defenseRating = 2200; guard.defenseRating = 2200;
} }
if(guard!= null && guard.healthMax != 12500) { if(guard != null && guard.healthMax != 12500) {
guard.despawn(); guard.despawn();
} }
} }
@@ -133,6 +133,7 @@ public class StrongholdManager {
for(Mob mob : mine.strongholdMobs) { for(Mob mob : mine.strongholdMobs) {
mob.despawn(); mob.despawn();
mob.removeFromCache(); mob.removeFromCache();
DbManager.MobQueries.DELETE_MOB(mob);
} }
//restore the buildings //restore the buildings