From e713ee4817ca7f4b2a50f210f7547341bd8d74dd Mon Sep 17 00:00:00 2001 From: Jan Philipp Timme Date: Tue, 4 Nov 2014 19:29:24 +0100 Subject: [PATCH] Make Explosions inherit Entity instead of LivingEntity. --- src/de/teamteamteam/spacescooter/entity/ExplosionOne.java | 2 +- src/de/teamteamteam/spacescooter/entity/ExplosionTwo.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/de/teamteamteam/spacescooter/entity/ExplosionOne.java b/src/de/teamteamteam/spacescooter/entity/ExplosionOne.java index 6c8f96c..2d1b5ee 100644 --- a/src/de/teamteamteam/spacescooter/entity/ExplosionOne.java +++ b/src/de/teamteamteam/spacescooter/entity/ExplosionOne.java @@ -1,6 +1,6 @@ package de.teamteamteam.spacescooter.entity; -public class ExplosionOne extends LivingEntity { +public class ExplosionOne extends Entity { private int count = 71; diff --git a/src/de/teamteamteam/spacescooter/entity/ExplosionTwo.java b/src/de/teamteamteam/spacescooter/entity/ExplosionTwo.java index b5defd0..c6e9402 100644 --- a/src/de/teamteamteam/spacescooter/entity/ExplosionTwo.java +++ b/src/de/teamteamteam/spacescooter/entity/ExplosionTwo.java @@ -1,6 +1,6 @@ package de.teamteamteam.spacescooter.entity; -public class ExplosionTwo extends LivingEntity { +public class ExplosionTwo extends Entity { private int count = 141;