mirror of
https://github.com/PaperMC/Paper.git
synced 2025-08-15 12:13:54 -07:00
Possibly fixed block/chunk leaking
This commit is contained in:
@@ -9,9 +9,13 @@ public class PlayerManager {
|
||||
private PlayerList b = new PlayerList();
|
||||
private List c = new ArrayList();
|
||||
private MinecraftServer d;
|
||||
private WorldServer world; // Craftbukkit
|
||||
|
||||
public PlayerManager(MinecraftServer minecraftserver) {
|
||||
// Craftbukkit - change of method signature
|
||||
public PlayerManager(MinecraftServer minecraftserver, WorldServer world) {
|
||||
this.d = minecraftserver;
|
||||
|
||||
this.world = world; // Craftbukkit
|
||||
}
|
||||
|
||||
public void a() {
|
||||
|
Reference in New Issue
Block a user