summaryrefslogtreecommitdiffstats
path: root/Essentials/src/com/earth2me/essentials/commands/Commandptime.java
diff options
context:
space:
mode:
authorKHobbits <rob@khobbits.co.uk>2011-08-10 15:06:42 +0100
committerKHobbits <rob@khobbits.co.uk>2011-08-10 15:06:42 +0100
commit19595c5847ac6d60bfa15bb9bc34c3de3d9e85fd (patch)
tree9d15f2a1f83d87122c7d39c1fb13de7d3a7022c7 /Essentials/src/com/earth2me/essentials/commands/Commandptime.java
parent47c82175112f3b221d019b06f6049fa8295e622f (diff)
downloadEssentials-19595c5847ac6d60bfa15bb9bc34c3de3d9e85fd.tar
Essentials-19595c5847ac6d60bfa15bb9bc34c3de3d9e85fd.tar.gz
Essentials-19595c5847ac6d60bfa15bb9bc34c3de3d9e85fd.tar.lz
Essentials-19595c5847ac6d60bfa15bb9bc34c3de3d9e85fd.tar.xz
Essentials-19595c5847ac6d60bfa15bb9bc34c3de3d9e85fd.zip
Add '@' prefix to time, to fix the time, rather than relative.
Diffstat (limited to 'Essentials/src/com/earth2me/essentials/commands/Commandptime.java')
-rwxr-xr-xEssentials/src/com/earth2me/essentials/commands/Commandptime.java43
1 files changed, 32 insertions, 11 deletions
diff --git a/Essentials/src/com/earth2me/essentials/commands/Commandptime.java b/Essentials/src/com/earth2me/essentials/commands/Commandptime.java
index ea7b7a65c..adb34b16a 100755
--- a/Essentials/src/com/earth2me/essentials/commands/Commandptime.java
+++ b/Essentials/src/com/earth2me/essentials/commands/Commandptime.java
@@ -23,9 +23,10 @@ public class Commandptime extends EssentialsCommand
public static final ChatColor colorLogo = ChatColor.GREEN;
public static final ChatColor colorHighlight1 = ChatColor.AQUA;
public static final ChatColor colorBad = ChatColor.RED;
-
public static final Set<String> getAliases = new HashSet<String>();
- static {
+
+ static
+ {
getAliases.add("get");
getAliases.add("list");
getAliases.add("show");
@@ -65,6 +66,13 @@ public class Commandptime extends EssentialsCommand
Long ticks;
// Parse the target time int ticks from args[0]
String timeParam = args[0];
+ Boolean relative = true;
+ if (timeParam.startsWith("@"))
+ {
+ relative = false;
+ timeParam = timeParam.substring(1);
+ }
+
if (getAliases.contains(timeParam))
{
getUsersTime(sender, users);
@@ -86,7 +94,7 @@ public class Commandptime extends EssentialsCommand
}
}
- setUsersTime(sender, users, ticks);
+ setUsersTime(sender, users, ticks, relative);
}
/**
@@ -98,27 +106,35 @@ public class Commandptime extends EssentialsCommand
{
final User user = users.iterator().next();
- //Todo: Find out why this doesn't work?
- // if (user.isPlayerTimeRelative())
if (user.getPlayerTimeOffset() == 0)
{
sender.sendMessage(colorDefault + user.getName() + "'s time is normal. Time is the same as on the server.");
}
else
{
- sender.sendMessage(colorDefault + user.getName() + "'s time is fixed to: " + DescParseTickFormat.format(user.getPlayerTime()));
+ String time = DescParseTickFormat.format(user.getPlayerTime());
+ if (!user.isPlayerTimeRelative())
+ {
+ time = "fixed to " + time;
+ }
+ sender.sendMessage(colorDefault + user.getName() + "'s time is " + time);
}
return;
}
- sender.sendMessage(colorDefault + "These players have fixed time:");
+ sender.sendMessage(colorDefault + "These players have their own time:");
for (User user : users)
{
//if (!user.isPlayerTimeRelative())
if (user.getPlayerTimeOffset() != 0)
{
- sender.sendMessage(colorDefault + user.getName() + ": " + DescParseTickFormat.format(user.getPlayerTime()));
+ String time = DescParseTickFormat.format(user.getPlayerTime());
+ if (!user.isPlayerTimeRelative())
+ {
+ time = "fixed to " + time;
+ }
+ sender.sendMessage(colorDefault + user.getName() + "'s time is " + time);
}
}
return;
@@ -127,7 +143,7 @@ public class Commandptime extends EssentialsCommand
/**
* Used to set the time and inform of the change
*/
- private void setUsersTime(final CommandSender sender, final Collection<User> users, final Long ticks)
+ private void setUsersTime(final CommandSender sender, final Collection<User> users, final Long ticks, Boolean relative)
{
// Update the time
if (ticks == null)
@@ -143,10 +159,15 @@ public class Commandptime extends EssentialsCommand
// Set
for (User user : users)
{
+ final World world = user.getWorld();
long time = user.getPlayerTime();
time -= time % 24000;
- final World world = user.getWorld();
- user.setPlayerTime(time + 24000 + ticks - world.getTime(), true);
+ time += 24000 + ticks;
+ if (relative)
+ {
+ time -= world.getTime();
+ }
+ user.setPlayerTime(time, relative);
}
}