Mirror von
https://github.com/IntellectualSites/FastAsyncWorldEdit.git
synchronisiert 2024-11-08 04:20:06 +01:00
Fixed AsyncWorld for real
Dieser Commit ist enthalten in:
Ursprung
4d4709b2f6
Commit
73c5e34040
@ -255,6 +255,27 @@ public class AsyncWorld extends PassthroughExtent implements World {
|
|||||||
return getHighestBlockAt(loc.getBlockX(), loc.getBlockZ());
|
return getHighestBlockAt(loc.getBlockX(), loc.getBlockZ());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public int getHighestBlockYAt(int i, int i1, @NotNull HeightMap heightMap) {
|
||||||
|
return parent.getHighestBlockYAt(i,i1, heightMap);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public int getHighestBlockYAt(@NotNull Location location, @NotNull HeightMap heightMap) {
|
||||||
|
return parent.getHighestBlockYAt(location, heightMap);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public @NotNull Block getHighestBlockAt(int i, int i1, @NotNull HeightMap heightMap) {
|
||||||
|
return parent.getHighestBlockAt(i, i1, heightMap);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public @NotNull Block getHighestBlockAt(@NotNull Location location,
|
||||||
|
@NotNull HeightMap heightMap) {
|
||||||
|
return parent.getHighestBlockAt(location, heightMap);
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public AsyncChunk getChunkAt(int x, int z) {
|
public AsyncChunk getChunkAt(int x, int z) {
|
||||||
return new AsyncChunk(this, x, z);
|
return new AsyncChunk(this, x, z);
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren