diff options
author | KHobbits <rob@khobbits.co.uk> | 2011-08-10 12:05:05 +0600 |
---|---|---|
committer | KHobbits <rob@khobbits.co.uk> | 2011-08-10 12:05:05 +0600 |
commit | ec5746dbe6975499ed73e6b12b3c5933c3440351 (patch) | |
tree | 1e00a469449b3c0c57e62847d3a0775bf88ba2fa | |
parent | 05ba5c00e6347a2a840dd652258ac7682e1dd608 (diff) | |
download | Essentials-ec5746dbe6975499ed73e6b12b3c5933c3440351.tar Essentials-ec5746dbe6975499ed73e6b12b3c5933c3440351.tar.gz Essentials-ec5746dbe6975499ed73e6b12b3c5933c3440351.tar.lz Essentials-ec5746dbe6975499ed73e6b12b3c5933c3440351.tar.xz Essentials-ec5746dbe6975499ed73e6b12b3c5933c3440351.zip |
Fixing omission on last patches.
-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 |