From 9bcb3cb606d6079f2e34c26007895a80d8533062 Mon Sep 17 00:00:00 2001 From: KHobbits Date: Sun, 18 May 2014 19:47:18 +0100 Subject: Fix invalid TL key. --- Essentials/src/com/earth2me/essentials/commands/Commandweather.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) { -- cgit v1.2.3