summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorsnowleo <schneeleo@gmail.com>2011-07-20 23:18:09 +0200
committersnowleo <schneeleo@gmail.com>2011-07-20 23:18:09 +0200
commit28dd14d38c45f5322b46959773e27c989f216f7f (patch)
tree4830fdaffdf892116cea21422988183e0bed915e
parentf6e6e0042ad27658b5905ea054c0f7c20def9027 (diff)
downloadEssentials-28dd14d38c45f5322b46959773e27c989f216f7f.tar
Essentials-28dd14d38c45f5322b46959773e27c989f216f7f.tar.gz
Essentials-28dd14d38c45f5322b46959773e27c989f216f7f.tar.lz
Essentials-28dd14d38c45f5322b46959773e27c989f216f7f.tar.xz
Essentials-28dd14d38c45f5322b46959773e27c989f216f7f.zip
Fix /time for players without essentials.time.world
-rw-r--r--Essentials/src/com/earth2me/essentials/commands/Commandtime.java2
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 8ea14ae77..c823e84af 100644
--- a/Essentials/src/com/earth2me/essentials/commands/Commandtime.java
+++ b/Essentials/src/com/earth2me/essentials/commands/Commandtime.java
@@ -33,7 +33,7 @@ public class Commandtime extends EssentialsCommand
else
{
charge(user);
- setPlayerTime(user, commandLabel);
+ setPlayerTime(user, args[0]);
}
}
else