Fix timeWorldCurrent translation key in /time command

This commit is contained in:
snowleo 2011-11-20 19:12:20 +01:00
parent 1e4a54baca
commit 19f5a2340d

View file

@ -69,7 +69,7 @@ public class Commandtime extends EssentialsCommand
for (World world : worlds) 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())));
} }
} }