summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/bukkit/craftbukkit/CraftBlockChangeDelegate.java
blob: 470828a222af1812690cc7fdf33731bdce81f0f1 (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
package org.bukkit.craftbukkit;

import net.minecraft.server.Block;

import org.bukkit.BlockChangeDelegate;

public class CraftBlockChangeDelegate {
    private final BlockChangeDelegate delegate;

    public CraftBlockChangeDelegate(BlockChangeDelegate delegate) {
        this.delegate = delegate;
    }

    public BlockChangeDelegate getDelegate() {
        return delegate;
    }

    public Block getType(int x, int y, int z) {
        return Block.e(this.delegate.getTypeId(x, y, z));
    }

    public void setTypeAndData(int x, int y, int z, Block block, int data, int light) {
        delegate.setRawTypeIdAndData(x, y, z, Block.b(block), data);
    }

    public boolean isEmpty(int x, int y, int z) {
        return delegate.isEmpty(x, y, z);
    }
}