updated sketch

This commit is contained in:
Mike Schwörer 2015-09-19 22:50:48 +02:00
parent 6966bf3933
commit c1045464ac
3 changed files with 2 additions and 2 deletions

View File

@ -102,9 +102,9 @@ public class Cannon extends Entity {
public void onBulletHit(Team hit_team) {
if (hit_team.isNeutral) return;
if (hit_team == team) {
if (hit_team == team && health < 1) {
health = Math.min(1, health + HEALTH_REGEN_PER_HIT);
} else {
} else if (hit_team != team) {
health = Math.max(0, health - HEALTH_REGEN_PER_HIT);
}
}

Binary file not shown.

BIN
data/cannon_sketch.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB