Merge pull request #22 from RandomPanda30/master

+ Added broadcast message on seeker spawn. Closes #15.
This commit is contained in:
Steffion 2013-10-06 08:15:30 -07:00
commit 87ad429e2f
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),