public void scheduleCropUpdate(World world, int x, int y, int z, int growthTime) { world.scheduleBlockUpdate(new BlockPos(x, y, z), this.getBlock(), growthTime, 0); }
public void scheduleRedstoneUpdate(World world, int x, int y, int z, int delay) { world.scheduleBlockUpdate(new BlockPos(x, y, z), Blocks.REDSTONE_WIRE, delay, 0); }Package/Library: net.minecraft.world World