summaryrefslogtreecommitdiffstats
path: root/src/main/java/net/minecraft/server/WorldManager.java
blob: d96c1699c1306715c50c8f3f6cf4d5a598d355b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
package net.minecraft.server;

public class WorldManager implements IWorldAccess {

    private MinecraftServer a;
    public WorldServer world; // CraftBukkit

    // CraftBukkit - changed signature
    public WorldManager(MinecraftServer minecraftserver, WorldServer world) {
        this.a = minecraftserver;
        this.world = world; // CraftBukkit
    }

    public void a(String s, double d0, double d1, double d2, double d3, double d4, double d5) {}

    public void a(Entity entity) {
        this.a.k.a(entity);
    }

    public void b(Entity entity) {
        this.a.k.b(entity);
    }

    public void a(String s, double d0, double d1, double d2, float f, float f1) {}

    public void a(int i, int j, int k, int l, int i1, int j1) {}

    public void a() {}

    public void a(int i, int j, int k) {
        // CraftBukkit
        this.a.f.a(i, j, k, world);
    }

    public void a(String s, int i, int j, int k) {}

    public void a(int i, int j, int k, TileEntity tileentity) {
        this.a.f.a(i, j, k, tileentity);
    }
}