geforkt von Mirrors/Paper
I'm quite aware that I fail at merging.
Dieser Commit ist enthalten in:
Ursprung
919023fe5d
Commit
172db788b3
@ -293,6 +293,8 @@ public class MinecraftServer implements ICommandListener, Runnable {
|
||||
entityplayer.a.b((Packet) (new Packet4UpdateTime(entityplayer.world.e)));
|
||||
}
|
||||
}
|
||||
|
||||
((CraftScheduler) server.getScheduler()).mainThreadHeartbeat(this.h);
|
||||
|
||||
for (WorldServer world : worlds) {
|
||||
world.f();
|
||||
@ -300,12 +302,7 @@ public class MinecraftServer implements ICommandListener, Runnable {
|
||||
while (world.d()) {
|
||||
;
|
||||
}
|
||||
|
||||
;
|
||||
((CraftScheduler) server.getScheduler()).mainThreadHeartbeat(this.h);
|
||||
|
||||
while (this.e.d()) {
|
||||
;
|
||||
|
||||
world.c();
|
||||
}
|
||||
// Craftbukkit end
|
||||
|
@ -11,6 +11,7 @@ import net.minecraft.server.EntityPlayer;
|
||||
import net.minecraft.server.MinecraftServer;
|
||||
import net.minecraft.server.PropertyManager;
|
||||
import net.minecraft.server.ServerConfigurationManager;
|
||||
import net.minecraft.server.WorldManager;
|
||||
import net.minecraft.server.WorldServer;
|
||||
import org.bukkit.*;
|
||||
import org.bukkit.plugin.Plugin;
|
||||
@ -153,8 +154,16 @@ public final class CraftServer implements Server {
|
||||
return scheduler;
|
||||
}
|
||||
|
||||
public World[] getWorlds() {
|
||||
return console.worlds.toArray(new World[0]);
|
||||
public List<World> getWorlds() {
|
||||
List<World> worlds = new ArrayList<World>();
|
||||
|
||||
synchronized (console.worlds) {
|
||||
for (WorldServer world : console.worlds) {
|
||||
worlds.add(world.getWorld());
|
||||
}
|
||||
}
|
||||
|
||||
return worlds;
|
||||
}
|
||||
|
||||
public ServerConfigurationManager getHandle() {
|
||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren