mirror of
https://github.com/PaperMC/Paper.git
synced 2025-08-14 11:45:52 -07:00
Added per player time support. Thanks eisental, Shamebot and needspeed10!
This commit is contained in:
@@ -483,6 +483,19 @@ public class EntityPlayer extends EntityHuman implements ICrafting {
|
||||
}
|
||||
|
||||
// CraftBukkit start
|
||||
public long timeOffset = 0;
|
||||
public boolean relativeTime = true;
|
||||
|
||||
public long getPlayerTime() {
|
||||
if (relativeTime) {
|
||||
// Adds timeOffset to the current server time.
|
||||
return world.getTime() + timeOffset;
|
||||
} else {
|
||||
// Adds timeOffset to the beginning of this day.
|
||||
return world.getTime() - (world.getTime() % 24000) + timeOffset;
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return super.toString() + "(" + name + " at " + locX + "," + locY + "," + locZ + ")";
|
||||
|
@@ -177,7 +177,7 @@ public class MinecraftServer implements Runnable, ICommandListener {
|
||||
|
||||
File newWorld = new File(new File(name), dim);
|
||||
File oldWorld = new File(new File(s), dim);
|
||||
|
||||
|
||||
if ((!newWorld.isDirectory()) && (oldWorld.isDirectory())) {
|
||||
log.info("---- Migration of old " + worldType + " folder required ----");
|
||||
log.info("Unfortunately due to the way that Minecraft implemented multiworld support in 1.6, Bukkit requires that you move your " + worldType + " folder to a new location in order to operate correctly.");
|
||||
@@ -411,7 +411,7 @@ public class MinecraftServer implements Runnable, ICommandListener {
|
||||
// CraftBukkit start - only send timeupdates to the people in that world
|
||||
for (int i = 0; i < this.serverConfigurationManager.players.size(); ++i) {
|
||||
EntityPlayer entityplayer = (EntityPlayer) this.serverConfigurationManager.players.get(i);
|
||||
entityplayer.netServerHandler.sendPacket(new Packet4UpdateTime(entityplayer.world.getTime()));
|
||||
entityplayer.netServerHandler.sendPacket(new Packet4UpdateTime(entityplayer.getPlayerTime())); // Add support for per player time
|
||||
}
|
||||
}
|
||||
|
||||
|
@@ -97,7 +97,7 @@ public class NetLoginHandler extends NetHandler {
|
||||
this.server.serverConfigurationManager.c(entityplayer);
|
||||
netserverhandler.a(entityplayer.locX, entityplayer.locY, entityplayer.locZ, entityplayer.yaw, entityplayer.pitch);
|
||||
this.server.networkListenThread.a(netserverhandler);
|
||||
netserverhandler.sendPacket(new Packet4UpdateTime(worldserver.getTime()));
|
||||
netserverhandler.sendPacket(new Packet4UpdateTime(entityplayer.getPlayerTime())); // CraftBukkit - add support for player specific time
|
||||
entityplayer.syncInventory();
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user