summaryrefslogtreecommitdiffstats
path: root/Essentials/src/com/earth2me/essentials/signs/SignWeather.java
diff options
context:
space:
mode:
Diffstat (limited to 'Essentials/src/com/earth2me/essentials/signs/SignWeather.java')
-rw-r--r--Essentials/src/com/earth2me/essentials/signs/SignWeather.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/Essentials/src/com/earth2me/essentials/signs/SignWeather.java b/Essentials/src/com/earth2me/essentials/signs/SignWeather.java
index 45f715826..910adeb32 100644
--- a/Essentials/src/com/earth2me/essentials/signs/SignWeather.java
+++ b/Essentials/src/com/earth2me/essentials/signs/SignWeather.java
@@ -1,7 +1,7 @@
package com.earth2me.essentials.signs;
import com.earth2me.essentials.ChargeException;
-import static com.earth2me.essentials.I18n._;
+import static com.earth2me.essentials.I18n.tl;
import com.earth2me.essentials.Trade;
import com.earth2me.essentials.User;
import net.ess3.api.IEssentials;
@@ -30,7 +30,7 @@ public class SignWeather extends EssentialsSign
return true;
}
sign.setLine(1, "§c<sun|storm>");
- throw new SignException(_("onlySunStorm"));
+ throw new SignException(tl("onlySunStorm"));
}
@Override
@@ -53,6 +53,6 @@ public class SignWeather extends EssentialsSign
Trade.log("Sign", "WeatherStorm", "Interact", username, null, username, charge, sign.getBlock().getLocation(), ess);
return true;
}
- throw new SignException(_("onlySunStorm"));
+ throw new SignException(tl("onlySunStorm"));
}
}