diff options
-rwxr-xr-x | Essentials/src/com/earth2me/essentials/commands/Commandptime.java | 3 | ||||
-rw-r--r-- | Essentials/src/plugin.yml | 4 |
2 files changed, 4 insertions, 3 deletions
diff --git a/Essentials/src/com/earth2me/essentials/commands/Commandptime.java b/Essentials/src/com/earth2me/essentials/commands/Commandptime.java index ac230a61d..ea7b7a65c 100755 --- a/Essentials/src/com/earth2me/essentials/commands/Commandptime.java +++ b/Essentials/src/com/earth2me/essentials/commands/Commandptime.java @@ -115,7 +115,8 @@ public class Commandptime extends EssentialsCommand for (User user : users) { - if (!user.isPlayerTimeRelative()) + //if (!user.isPlayerTimeRelative()) + if (user.getPlayerTimeOffset() != 0) { sender.sendMessage(colorDefault + user.getName() + ": " + DescParseTickFormat.format(user.getPlayerTime())); } diff --git a/Essentials/src/plugin.yml b/Essentials/src/plugin.yml index 4930fa6ec..9630a2628 100644 --- a/Essentials/src/plugin.yml +++ b/Essentials/src/plugin.yml @@ -275,8 +275,8 @@ commands: usage: /<command> <true/false> [duration] aliases: [ethunder] time: - description: Change the time in the world where you are (default) or in the world(s) specified - usage: /<command> [day|night|dawn|17:30|4pm|4000ticks] <worldname|all> + description: Change the world time. Defaults tos current world. + usage: /<command> [day|night|dawn|17:30|4pm|4000ticks] [worldname|all] aliases: [etime, day, night] togglejail: description: Prevents a player from interacting with the world and teleports him/her to the the jail specified |