mirror of
https://github.com/garbagemule/MobArena.git
synced 2024-11-23 19:16:41 +01:00
19 lines
467 B
Java
19 lines
467 B
Java
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);
|
|
}
|
|
}
|