~ Changed some names in messages.yml.

This commit is contained in:
Steffion 2013-10-06 17:32:13 +02:00
parent 87ad429e2f
commit bcbf3eea84
2 changed files with 4 additions and 4 deletions

View File

@ -150,9 +150,9 @@ public enum ConfigC {
normal_ingameSeekerSpawned ("%TAG%A%playername%%N has spawned as a seeker!", normal_ingameSeekerSpawned ("%TAG%A%playername%%N has spawned as a seeker!",
W.messages), W.messages),
normal_ingameGivenSword ("%TAG%NYou were given a sword!", 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...", normal_ingameHiderDied ("%TAG%NHider %A%playername%%N died! %A%left%%N hider(s) remain...",
W.messages), W.messages),
normal_SeekerDied ("%TAG%NSeeker %A%playername%%N died! He will respawn in %A%secs%%N seconds!", normal_ingameSeekerDied ("%TAG%NSeeker %A%playername%%N died! He will respawn in %A%secs%%N seconds!",
W.messages), W.messages),
normal_winSeekers ("%TAG%NThe %ASEEKERS%N have won!", W.messages), normal_winSeekers ("%TAG%NThe %ASEEKERS%N have won!", W.messages),
normal_winHiders ("%TAG%NThe %AHIDERS%N have won!", W.messages), normal_winHiders ("%TAG%NThe %AHIDERS%N have won!", W.messages),

View File

@ -101,7 +101,7 @@ public class OnEntityDamageByEntityEvent implements Listener {
ArenaHandler ArenaHandler
.sendFMessage( .sendFMessage(
arena, arena,
ConfigC.normal_HiderDied, ConfigC.normal_ingameHiderDied,
"playername-" "playername-"
+ player.getName(), + player.getName(),
"left-" "left-"
@ -110,7 +110,7 @@ public class OnEntityDamageByEntityEvent implements Listener {
.size())); .size()));
} else { } else {
ArenaHandler.sendFMessage(arena, ArenaHandler.sendFMessage(arena,
ConfigC.normal_SeekerDied, ConfigC.normal_ingameSeekerDied,
"playername-" + player.getName(), "playername-" + player.getName(),
"secs-" + arena.waitingTimeSeeker); "secs-" + arena.waitingTimeSeeker);
} }