Merge remote-tracking branch 'upstream/master'

This commit is contained in:
RandomPanda30 2013-10-06 16:49:15 +01:00
commit 4987986e25
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!",
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),
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),
normal_winSeekers ("%TAG%NThe %ASEEKERS%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
.sendFMessage(
arena,
ConfigC.normal_HiderDied,
ConfigC.normal_ingameHiderDied,
"playername-"
+ player.getName(),
"left-"
@ -110,7 +110,7 @@ public class OnEntityDamageByEntityEvent implements Listener {
.size()));
} else {
ArenaHandler.sendFMessage(arena,
ConfigC.normal_SeekerDied,
ConfigC.normal_ingameSeekerDied,
"playername-" + player.getName(),
"secs-" + arena.waitingTimeSeeker);
}