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:
Ursprung
7a49e29b55
Commit
078e2511a5
@ -18,12 +18,10 @@ public class StructureGrowDelegate implements BlockChangeDelegate {
|
||||
this.world = world.getWorld();
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean setRawTypeId(int x, int y, int z, int type) {
|
||||
return setRawTypeIdAndData(x, y, z, type, 0);
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean setRawTypeIdAndData(int x, int y, int z, int type, int data) {
|
||||
BlockState state = world.getBlockAt(x, y, z).getState();
|
||||
state.setTypeId(type);
|
||||
@ -32,12 +30,10 @@ public class StructureGrowDelegate implements BlockChangeDelegate {
|
||||
return true;
|
||||
}
|
||||
|
||||
@Override
|
||||
public int getTypeId(int x, int y, int z) {
|
||||
return world.getBlockTypeIdAt(x, y, z);
|
||||
}
|
||||
|
||||
@Override
|
||||
public int getHeight() {
|
||||
return world.getMaxHeight();
|
||||
}
|
||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren