r* tree buildings acquire 10% more HP

This commit is contained in:
2024-09-08 17:18:45 -05:00
parent b270e1ac8d
commit 689969a005
+16
View File
@@ -182,6 +182,22 @@ public class Building extends AbstractWorldObject {
this.setHealth(healthMax);
}
if(!this.ownerIsNPC){
//add extra HP for city walls of R8 trees
City city = ZoneManager.getCityAtLocation(this.loc);
if(city != null){
Building ToL = city.getTOL();
if(ToL != null){
if(ToL.rank == 8){
float currentHealth = this.health.get();
float newHealth = (currentHealth/this.healthMax) * (this.healthMax * 1.1f);
this.healthMax *= 1.1f;
this.setHealth(newHealth);
}
}
}
}
// Null out blueprint if not needed (npc building)
if (blueprintUUID == 0)