Updated source code for CB 1.1-R6.

This commit is contained in:
garbagemule
2012-03-02 22:30:52 +01:00
parent 353109c89a
commit dc9059cecd
10 changed files with 57 additions and 61 deletions
+1 -2
View File
@@ -12,7 +12,6 @@ public class ShootArrow implements Ability
{
@Override
public void execute(Arena arena, MABoss boss) {
//boss.getEntity().launchProjectile(Arrow.class);
boss.getEntity().shootArrow();
boss.getEntity().launchProjectile(Arrow.class);
}
}
+1 -2
View File
@@ -12,7 +12,6 @@ public class ShootFireball implements Ability
{
@Override
public void execute(Arena arena, MABoss boss) {
//boss.getEntity().launchProjectile(Fireball.class);
boss.getEntity().throwEgg();
boss.getEntity().launchProjectile(Fireball.class);
}
}