summaryrefslogtreecommitdiffstats
path: root/Essentials/src/com/earth2me/essentials/commands/PlayerNotFoundException.java
diff options
context:
space:
mode:
Diffstat (limited to 'Essentials/src/com/earth2me/essentials/commands/PlayerNotFoundException.java')
-rw-r--r--Essentials/src/com/earth2me/essentials/commands/PlayerNotFoundException.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/Essentials/src/com/earth2me/essentials/commands/PlayerNotFoundException.java b/Essentials/src/com/earth2me/essentials/commands/PlayerNotFoundException.java
index c33e87522..1f5a00fbd 100644
--- a/Essentials/src/com/earth2me/essentials/commands/PlayerNotFoundException.java
+++ b/Essentials/src/com/earth2me/essentials/commands/PlayerNotFoundException.java
@@ -1,11 +1,11 @@
package com.earth2me.essentials.commands;
-import static com.earth2me.essentials.I18n._;
+import static com.earth2me.essentials.I18n.tl;
public class PlayerNotFoundException extends NoSuchFieldException
{
public PlayerNotFoundException()
{
- super(_("playerNotFound"));
+ super(tl("playerNotFound"));
}
}