3
0
Mirror von https://github.com/PaperMC/Paper.git synchronisiert 2024-11-17 05:20:05 +01:00

[Bleeding] Override not applicable

Dieser Commit ist enthalten in:
Wesley Wolfe 2012-02-23 17:48:30 -06:00 committet von EvilSeph
Ursprung 7a49e29b55
Commit 078e2511a5

Datei anzeigen

@ -18,12 +18,10 @@ public class StructureGrowDelegate implements BlockChangeDelegate {
this.world = world.getWorld(); this.world = world.getWorld();
} }
@Override
public boolean setRawTypeId(int x, int y, int z, int type) { public boolean setRawTypeId(int x, int y, int z, int type) {
return setRawTypeIdAndData(x, y, z, type, 0); return setRawTypeIdAndData(x, y, z, type, 0);
} }
@Override
public boolean setRawTypeIdAndData(int x, int y, int z, int type, int data) { public boolean setRawTypeIdAndData(int x, int y, int z, int type, int data) {
BlockState state = world.getBlockAt(x, y, z).getState(); BlockState state = world.getBlockAt(x, y, z).getState();
state.setTypeId(type); state.setTypeId(type);
@ -32,12 +30,10 @@ public class StructureGrowDelegate implements BlockChangeDelegate {
return true; return true;
} }
@Override
public int getTypeId(int x, int y, int z) { public int getTypeId(int x, int y, int z) {
return world.getBlockTypeIdAt(x, y, z); return world.getBlockTypeIdAt(x, y, z);
} }
@Override
public int getHeight() { public int getHeight() {
return world.getMaxHeight(); return world.getMaxHeight();
} }