geforkt von Mirrors/Paper
Implemented int getBlockTypeIdAt(int x, int y, int z).
Dieser Commit ist enthalten in:
Ursprung
dea72d6623
Commit
5aa1bc269d
4
src/main/java/org/bukkit/craftbukkit/CraftWorld.java
Normale Datei → Ausführbare Datei
4
src/main/java/org/bukkit/craftbukkit/CraftWorld.java
Normale Datei → Ausführbare Datei
@ -54,6 +54,10 @@ public class CraftWorld implements World {
|
|||||||
return block;
|
return block;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public int getBlockTypeIdAt(int x, int y, int z) {
|
||||||
|
return world.a(x, y, z);
|
||||||
|
}
|
||||||
|
|
||||||
public int getHighestBlockYAt(int x, int z) {
|
public int getHighestBlockYAt(int x, int z) {
|
||||||
return world.d(x, z);
|
return world.d(x, z);
|
||||||
}
|
}
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren