From bcbf3eea84d2baa1e58a38542d34b45fce755ccf Mon Sep 17 00:00:00 2001 From: Steffion Date: Sun, 6 Oct 2013 17:32:13 +0200 Subject: [PATCH] ~ Changed some names in messages.yml. --- src/nl/Steffion/BlockHunt/ConfigC.java | 4 ++-- .../BlockHunt/Listeners/OnEntityDamageByEntityEvent.java | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/nl/Steffion/BlockHunt/ConfigC.java b/src/nl/Steffion/BlockHunt/ConfigC.java index 5eae88e..7a2c864 100644 --- a/src/nl/Steffion/BlockHunt/ConfigC.java +++ b/src/nl/Steffion/BlockHunt/ConfigC.java @@ -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), diff --git a/src/nl/Steffion/BlockHunt/Listeners/OnEntityDamageByEntityEvent.java b/src/nl/Steffion/BlockHunt/Listeners/OnEntityDamageByEntityEvent.java index d29a740..3279738 100644 --- a/src/nl/Steffion/BlockHunt/Listeners/OnEntityDamageByEntityEvent.java +++ b/src/nl/Steffion/BlockHunt/Listeners/OnEntityDamageByEntityEvent.java @@ -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); }