Fixed Typo With Focus

This commit is contained in:
Joshua Murphy 2018-11-22 02:16:58 -05:00
parent a59c226747
commit 364a6d28fa
2 changed files with 2 additions and 2 deletions

@ -41,7 +41,7 @@ public class CmdFocus
FTeamWrapper.updatePrefixes(target.getFaction()); FTeamWrapper.updatePrefixes(target.getFaction());
return; return;
} }
myFaction.msg(TL.COMMAND_FOCUS_FOCUSSING, target.getName()); myFaction.msg(TL.COMMAND_FOCUS_FOCUSING, target.getName());
myFaction.setFocused(target.getName()); myFaction.setFocused(target.getName());
FTeamWrapper.updatePrefixes(target.getFaction()); FTeamWrapper.updatePrefixes(target.getFaction());
} }

@ -291,7 +291,7 @@ public enum TL {
COMMAND_FLY_NO_EPEARL("&c&l[!] &7You &ccannot&7 throw enderpearls while flying!"), COMMAND_FLY_NO_EPEARL("&c&l[!] &7You &ccannot&7 throw enderpearls while flying!"),
COMMAND_FOCUS_SAMEFACTION("&c[!] You may not focus players in your faction!"), COMMAND_FOCUS_SAMEFACTION("&c[!] You may not focus players in your faction!"),
COMMAND_FOCUS_FOCUSSING("&c&l[!] &7Your faction is now focusing &c%s"), COMMAND_FOCUS_FOCUSING("&c&l[!] &7Your faction is now focusing &c%s"),
COMMAND_FOCUS_NO_LONGER("&c&l[!] &7Your faction is no longer focusing &c%s"), COMMAND_FOCUS_NO_LONGER("&c&l[!] &7Your faction is no longer focusing &c%s"),
COMMAND_FOCUS_DESCRIPTION("Focus a Specific Player"), COMMAND_FOCUS_DESCRIPTION("Focus a Specific Player"),