Add biff to the hero list

This commit is contained in:
Sam 2017-06-03 15:33:26 +01:00
parent dbde734e76
commit e094446be4
2 changed files with 4 additions and 2 deletions

View File

@ -22,6 +22,7 @@ import nautilus.game.arcade.game.games.moba.gold.GoldManager;
import nautilus.game.arcade.game.games.moba.kit.HeroKit;
import nautilus.game.arcade.game.games.moba.kit.KitPlayer;
import nautilus.game.arcade.game.games.moba.kit.anath.HeroAnath;
import nautilus.game.arcade.game.games.moba.kit.biff.HeroBiff;
import nautilus.game.arcade.game.games.moba.kit.bob.HeroBob;
import nautilus.game.arcade.game.games.moba.kit.dana.HeroDana;
import nautilus.game.arcade.game.games.moba.kit.devon.HeroDevon;
@ -91,6 +92,7 @@ public class Moba extends TeamGame
new HeroDevon(Manager),
new HeroAnath(Manager),
new HeroDana(Manager),
new HeroBiff(Manager),
new HeroBob(Manager)
};

View File

@ -83,12 +83,12 @@ public class SkillWarHorse extends HeroSkill
{
WarHorseData data = iterator.next();
if (UtilTime.elapsed(data.Start, 6000)
if (UtilTime.elapsed(data.Start, 6000))
{
data.Horse.remove();
iterator.remove();
}
else if ()
//else if ()
}
}