diff --git a/Essentials/src/com/earth2me/essentials/commands/EssentialsCommand.java b/Essentials/src/com/earth2me/essentials/commands/EssentialsCommand.java index ab2c3c2ed..3091e3fcb 100644 --- a/Essentials/src/com/earth2me/essentials/commands/EssentialsCommand.java +++ b/Essentials/src/com/earth2me/essentials/commands/EssentialsCommand.java @@ -32,7 +32,7 @@ public abstract class EssentialsCommand implements IEssentialsCommand { if (args.length <= pos) throw new NotEnoughArgumentsException(); List matches = server.matchPlayer(args[pos]); - if (matches.size() < 1) throw new NoSuchFieldException(Util.i18n("noPlayerFound")); + if (matches.size() < 1) throw new NoSuchFieldException(Util.i18n("playerNotFound")); for (Player p : matches) { if (p.getDisplayName().startsWith(args[pos]))