Attempt to properly update...

This commit is contained in:
garbagemule
2012-03-01 00:19:17 +01:00
parent 2e76b93837
commit a3fa0539ce
29 changed files with 1972 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
import org.bukkit.entity.Player;
import com.garbagemule.MobArena.framework.Arena;
import com.garbagemule.MobArena.waves.MABoss;
import com.garbagemule.MobArena.waves.ability.*;
@AbilityInfo(
name = "Warp",
aliases = {"warp","warptoplayer"}
)
public class WarpToPlayer implements Ability
{
@Override
public void execute(Arena arena, MABoss boss) {
Player p = AbilityUtils.getRandomPlayer(arena);
boss.getEntity().teleport(p);
}
}