+ Added broadcast message on seeker spawn. #15.

This commit is contained in:
RandomPanda30 2013-10-06 16:10:50 +01:00
parent 59066f3660
commit 56b02fdafa
2 changed files with 5 additions and 0 deletions

View File

@ -485,6 +485,9 @@ public class BlockHunt extends JavaPlugin implements Listener {
if (W.seekertime.get(player) <= 0) {
player.teleport(arena.hidersWarp);
W.seekertime.remove(player);
ArenaHandler.sendFMessage(arena,
ConfigC.normal_ingameSeekerSpawned,
"playername-" + player.getName());
}
}
}

View File

@ -147,6 +147,8 @@ public enum ConfigC {
W.messages),
normal_ingameArenaEnd ("%TAG%NThe arena will end in %A%1%%N second(s)!",
W.messages),
normal_ingameSeekerSpawned ("%TAG%A%playername%%N has spawned as a seeker!",
W.messages),
normal_ingameGivenSword ("%TAG%NYou were given a sword!", W.messages),
normal_HiderDied ("%TAG%NHider %A%playername%%N died! %A%left%%N hider(s) remain...",
W.messages),