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
commit8159530906a8dd68a9e7a1631c67b592303c422c (patch)
tree25ccd13adcec9b6d132f4670ba9a3567428c6fa6
parent7e8ba9a256029e6238ef7ce2e909e2d02eecd49b (diff)
downloadEssentials-8159530906a8dd68a9e7a1631c67b592303c422c.tar
Essentials-8159530906a8dd68a9e7a1631c67b592303c422c.tar.gz
Essentials-8159530906a8dd68a9e7a1631c67b592303c422c.tar.lz
Essentials-8159530906a8dd68a9e7a1631c67b592303c422c.tar.xz
Essentials-8159530906a8dd68a9e7a1631c67b592303c422c.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)
{