diff options
author | snowleo <schneeleo@gmail.com> | 2011-11-20 19:12:20 +0100 |
---|---|---|
committer | snowleo <schneeleo@gmail.com> | 2011-11-20 19:12:20 +0100 |
commit | 19f5a2340d9fdb3902f5c388f463fd569943db07 (patch) | |
tree | 81f0a68671356ef08e0dbfed685164d1503f8580 | |
parent | 1e4a54baca307f844f02794a04564d85d7508a1a (diff) | |
download | Essentials-19f5a2340d9fdb3902f5c388f463fd569943db07.tar Essentials-19f5a2340d9fdb3902f5c388f463fd569943db07.tar.gz Essentials-19f5a2340d9fdb3902f5c388f463fd569943db07.tar.lz Essentials-19f5a2340d9fdb3902f5c388f463fd569943db07.tar.xz Essentials-19f5a2340d9fdb3902f5c388f463fd569943db07.zip |
Fix timeWorldCurrent translation key in /time command
-rw-r--r-- | Essentials/src/com/earth2me/essentials/commands/Commandtime.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Essentials/src/com/earth2me/essentials/commands/Commandtime.java b/Essentials/src/com/earth2me/essentials/commands/Commandtime.java index 30ecaaf54..4535e5fe2 100644 --- a/Essentials/src/com/earth2me/essentials/commands/Commandtime.java +++ b/Essentials/src/com/earth2me/essentials/commands/Commandtime.java @@ -69,7 +69,7 @@ public class Commandtime extends EssentialsCommand for (World world : worlds) { - sender.sendMessage(Util.format("timeCurrentWorld", world.getName(), DescParseTickFormat.format(world.getTime()))); + sender.sendMessage(Util.format("timeWorldCurrent", world.getName(), DescParseTickFormat.format(world.getTime()))); } } |