use of org.bukkit.craftbukkit.v1_19_R1.CraftWorld in project JeffLib by JEFF-Media-GbR.
the class NMSHandler method setHeadTexture.
@Override
public void setHeadTexture(final Block block, @NotNull final GameProfile gameProfile) {
final World world = ((CraftWorld) block.getWorld()).getHandle();
final BlockPosition blockPosition = new BlockPosition(block.getX(), block.getY(), block.getZ());
final TileEntitySkull skull = (TileEntitySkull) world.getTileEntity(blockPosition);
skull.setGameProfile(gameProfile);
}
use of org.bukkit.craftbukkit.v1_19_R1.CraftWorld in project JeffLib by JEFF-Media-GbR.
the class NMSHandler method setHeadTexture.
@Override
public void setHeadTexture(final Block block, @NotNull final GameProfile gameProfile) {
final World world = ((CraftWorld) block.getWorld()).getHandle();
final BlockPosition blockPosition = new BlockPosition(block.getX(), block.getY(), block.getZ());
final TileEntitySkull skull = (TileEntitySkull) world.getTileEntity(blockPosition);
skull.setGameProfile(gameProfile);
}
use of org.bukkit.craftbukkit.v1_19_R1.CraftWorld in project JeffLib by JEFF-Media-GbR.
the class NMSHandler method setHeadTexture.
@Override
public void setHeadTexture(@NotNull final Block block, @NotNull final GameProfile gameProfile) {
final ServerLevel world = ((CraftWorld) block.getWorld()).getHandle();
final BlockPos blockPosition = new BlockPos(block.getX(), block.getY(), block.getZ());
final SkullBlockEntity skull = (SkullBlockEntity) world.getBlockEntity(blockPosition);
assert skull != null;
skull.setOwner(gameProfile);
}
use of org.bukkit.craftbukkit.v1_19_R1.CraftWorld in project TheAPI by TheDevTec.
the class v1_10_R1 method getChunk.
@Override
public Object getChunk(World world, int x, int z) {
WorldServer sworld = ((CraftWorld) world).getHandle();
net.minecraft.server.v1_10_R1.Chunk loaded = ((ChunkProviderServer) sworld.getChunkProvider()).getChunkIfLoaded(x, z);
if (loaded == null) {
// load
try {
net.minecraft.server.v1_10_R1.Chunk chunk;
chunk = ((IChunkLoader) Ref.get(((ChunkProviderServer) sworld.getChunkProvider()), chunkLoader)).a(sworld, x, z);
if (chunk != null) {
chunk.setLastSaved(sworld.getTime());
if (((ChunkProviderServer) sworld.getChunkProvider()).chunkGenerator != null) {
((ChunkProviderServer) sworld.getChunkProvider()).chunkGenerator.recreateStructures(chunk, x, z);
}
}
if (chunk != null) {
((ChunkProviderServer) sworld.getChunkProvider()).chunks.put(ChunkCoordIntPair.a(x, z), chunk);
postToMainThread(() -> {
chunk.addEntities();
});
loaded = chunk;
}
} catch (Exception e) {
}
}
if (loaded == null) {
// generate new chunk
ChunkRegionLoader loader = null;
if ((IChunkLoader) Ref.get(((ChunkProviderServer) sworld.getChunkProvider()), chunkLoader) instanceof ChunkRegionLoader) {
loader = (ChunkRegionLoader) Ref.get(((ChunkProviderServer) sworld.getChunkProvider()), chunkLoader);
}
if (loader != null && loader.chunkExists(sworld, x, z)) {
loaded = ChunkIOExecutor.syncChunkLoad(sworld, loader, (ChunkProviderServer) sworld.getChunkProvider(), x, z);
} else {
loaded = ((ChunkProviderServer) sworld.getChunkProvider()).originalGetChunkAt(x, z);
}
loaded = ((ChunkProviderServer) sworld.getChunkProvider()).chunkGenerator.getOrCreateChunk(x, z);
((ChunkProviderServer) sworld.getChunkProvider()).chunks.put(ChunkCoordIntPair.a(x, z), loaded);
}
return loaded;
}
use of org.bukkit.craftbukkit.v1_19_R1.CraftWorld in project TheAPI by TheDevTec.
the class v1_11_R1 method getChunk.
@Override
public Object getChunk(World world, int x, int z) {
WorldServer sworld = ((CraftWorld) world).getHandle();
net.minecraft.server.v1_11_R1.Chunk loaded = ((ChunkProviderServer) sworld.getChunkProvider()).getChunkIfLoaded(x, z);
if (loaded == null) {
// load
try {
net.minecraft.server.v1_11_R1.Chunk chunk;
chunk = ((IChunkLoader) Ref.get(((ChunkProviderServer) sworld.getChunkProvider()), chunkLoader)).a(sworld, x, z);
if (chunk != null) {
chunk.setLastSaved(sworld.getTime());
if (((ChunkProviderServer) sworld.getChunkProvider()).chunkGenerator != null) {
((ChunkProviderServer) sworld.getChunkProvider()).chunkGenerator.recreateStructures(chunk, x, z);
}
}
if (chunk != null) {
((ChunkProviderServer) sworld.getChunkProvider()).chunks.put(ChunkCoordIntPair.a(x, z), chunk);
postToMainThread(() -> {
chunk.addEntities();
});
loaded = chunk;
}
} catch (Exception e) {
}
}
if (loaded == null) {
// generate new chunk
ChunkRegionLoader loader = null;
if ((IChunkLoader) Ref.get(((ChunkProviderServer) sworld.getChunkProvider()), chunkLoader) instanceof ChunkRegionLoader) {
loader = (ChunkRegionLoader) Ref.get(((ChunkProviderServer) sworld.getChunkProvider()), chunkLoader);
}
if (loader != null && loader.chunkExists(sworld, x, z)) {
loaded = ChunkIOExecutor.syncChunkLoad(sworld, loader, (ChunkProviderServer) sworld.getChunkProvider(), x, z);
} else {
loaded = ((ChunkProviderServer) sworld.getChunkProvider()).originalGetChunkAt(x, z);
}
loaded = ((ChunkProviderServer) sworld.getChunkProvider()).chunkGenerator.getOrCreateChunk(x, z);
((ChunkProviderServer) sworld.getChunkProvider()).chunks.put(ChunkCoordIntPair.a(x, z), loaded);
}
return loaded;
}
Aggregations