Rename InfestationZombie to ZombieWrapper

This commit is contained in:
Thanos Paravantis 2016-05-20 13:34:21 +03:00
parent 1dffc9b78e
commit c828d37189
2 changed files with 4 additions and 4 deletions

View File

@ -15,7 +15,7 @@ import nautilus.game.arcade.game.games.mineware.challenge.type.ChallengeZombieIn
*
* @see ChallengeZombieInfection
*/
public class InfestationZombie
public class ZombieWrapper
{
private ChallengeZombieInfection _challenge;
private Zombie _wrapper;
@ -23,7 +23,7 @@ public class InfestationZombie
private long _freezeTime;
private float _speed;
public InfestationZombie(ChallengeZombieInfection challenge)
public ZombieWrapper(ChallengeZombieInfection challenge)
{
_challenge = challenge;
}

View File

@ -29,14 +29,14 @@ import mineplex.minecraft.game.core.damage.CustomDamageEvent;
import nautilus.game.arcade.game.games.mineware.BawkBawkBattles;
import nautilus.game.arcade.game.games.mineware.challenge.Challenge;
import nautilus.game.arcade.game.games.mineware.challenge.ChallengeType;
import nautilus.game.arcade.game.games.mineware.challenge.other.InfestationZombie;
import nautilus.game.arcade.game.games.mineware.challenge.other.ZombieWrapper;
/**
* A challenge based on zombie survival.
*/
public class ChallengeZombieInfection extends Challenge
{
private InfestationZombie _zombie = new InfestationZombie(this);
private ZombieWrapper _zombie = new ZombieWrapper(this);
private Set<Player> _infected = new HashSet<>();
public ChallengeZombieInfection(BawkBawkBattles host)