Browse Source

delete stronghold mobs form DB when finished

lakebane-strongholds
FatBoy-DOTC 4 months ago
parent
commit
99ad6f3712
  1. 3
      src/engine/gameManager/StrongholdManager.java

3
src/engine/gameManager/StrongholdManager.java

@ -84,7 +84,7 @@ public class StrongholdManager { @@ -84,7 +84,7 @@ public class StrongholdManager {
guard.atrHandOne = 1800;
guard.defenseRating = 2200;
}
if(guard!= null && guard.healthMax != 12500) {
if(guard != null && guard.healthMax != 12500) {
guard.despawn();
}
}
@ -133,6 +133,7 @@ public class StrongholdManager { @@ -133,6 +133,7 @@ public class StrongholdManager {
for(Mob mob : mine.strongholdMobs) {
mob.despawn();
mob.removeFromCache();
DbManager.MobQueries.DELETE_MOB(mob);
}
//restore the buildings

Loading…
Cancel
Save