Update after merge

This commit is contained in:
Retera 2021-06-27 17:30:54 -04:00
parent 4c84c373b4
commit 83fc753a0c
3 changed files with 1 additions and 13 deletions

View File

@ -25,11 +25,6 @@ public class CDestructable extends CWidget {
this.pathingInstanceDeath = pathingInstanceDeath;
}
@Override
public float getMaxLife() {
return destType.getMaxLife();
}
@Override
public float getFlyHeight() {
return 0;
@ -89,7 +84,7 @@ public class CDestructable extends CWidget {
@Override
public float getMaxLife() {
return this.destType.getLife();
return this.destType.getMaxLife();
}
public void setInvulnerable(final boolean invulnerable) {

View File

@ -1225,11 +1225,6 @@ public class CUnit extends CWidget {
setPointAndCheckUnstuck(structure.getX(), structure.getY(), simulation);
}
@Override
public float getMaxLife() {
return unitType.getMaxLife();
}
@Override
public void setLife(final CSimulation simulation, final float life) {
final boolean wasDead = isDead();

View File

@ -64,8 +64,6 @@ public abstract class CWidget implements AbilityTarget {
return this.life <= 0;
}
public abstract float getMaxLife();
public abstract boolean canBeTargetedBy(CSimulation simulation, CUnit source,
final EnumSet<CTargetType> targetsAllowed);