diff --git a/src/de/teamteamteam/spacescooter/entity/enemy/Enemy.java b/src/de/teamteamteam/spacescooter/entity/enemy/Enemy.java index b5787ce..1fa6407 100644 --- a/src/de/teamteamteam/spacescooter/entity/enemy/Enemy.java +++ b/src/de/teamteamteam/spacescooter/entity/enemy/Enemy.java @@ -52,6 +52,7 @@ public abstract class Enemy extends ShootingEntity { @Override public void die() { PlayerSession.addCredits(1); + super.die(); } @Override