summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKHobbits <rob@khobbits.co.uk>2014-05-18 19:47:18 +0100
committerKHobbits <rob@khobbits.co.uk>2014-05-18 19:47:18 +0100
commit625dea8012e603e98b4a6f8b6bbd5d89ebb67462 (patch)
tree3ab0f1254fcd3c34895426405a3f6a9ecbebb3ae
parent5a7dceedf2839289bd6c7075bfcec6016017bd0b (diff)
downloadEssentials-625dea8012e603e98b4a6f8b6bbd5d89ebb67462.tar
Essentials-625dea8012e603e98b4a6f8b6bbd5d89ebb67462.tar.gz
Essentials-625dea8012e603e98b4a6f8b6bbd5d89ebb67462.tar.lz
Essentials-625dea8012e603e98b4a6f8b6bbd5d89ebb67462.tar.xz
Essentials-625dea8012e603e98b4a6f8b6bbd5d89ebb67462.zip
Fix invalid TL key.
-rw-r--r--Essentials/src/com/earth2me/essentials/commands/Commandweather.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/Essentials/src/com/earth2me/essentials/commands/Commandweather.java b/Essentials/src/com/earth2me/essentials/commands/Commandweather.java
index 15947e261..0b7ae924f 100644
--- a/Essentials/src/com/earth2me/essentials/commands/Commandweather.java
+++ b/Essentials/src/com/earth2me/essentials/commands/Commandweather.java
@@ -70,7 +70,7 @@ public class Commandweather extends EssentialsCommand
final World world = server.getWorld(args[0]);
if (world == null)
{
- throw new Exception(tl("weatherInvalidWorldWorld", args[0]));
+ throw new Exception(tl("weatherInvalidWorld", args[0]));
}
if (args.length > 2)
{