1
0
Fork 0
mirror of https://github.com/PaperMC/Paper.git synced 2025-04-01 12:11:45 +02:00

Oops! This matters.

This commit is contained in:
Dinnerbone 2011-02-08 12:48:29 +00:00
parent 6751433a8e
commit bcf9b5ca19
2 changed files with 1 additions and 3 deletions
src/main/java/net/minecraft/server

View file

@ -136,8 +136,6 @@ public class World implements IBlockAccess {
flag = true;
}
// Craftbukkit start
this.q = (WorldProvider) object;
this.q.a(this);
this.G = this.a(this.t);

View file

@ -25,8 +25,8 @@ public class WorldServer extends World implements BlockChangeDelegate {
this.D = minecraftserver;
// CraftBukkit start
this.world = new CraftWorld(this);
this.server = minecraftserver.server;
this.world = new CraftWorld(this);
this.manager = new PlayerManager(minecraftserver, this);
}