Connect with us

Oklahoma

TIMELINE: Rounds of storms in Oklahoma continue throughout weekend

Published

on

TIMELINE: Rounds of storms in Oklahoma continue throughout weekend


TIMELINE: Rounds of storms in Oklahoma continue Saturday and throughout weekend

Advertisement

NA

Advertisement

TIMELINE: Rounds of storms in Oklahoma continue Saturday and throughout weekend

Updated: 9:21 AM CDT Apr 11, 2026

Editorial Standards

Advertisement

It’s day two of a six-day stretch of storm risks in Oklahoma, as rain chances are increasing. >> Go to the KOCO weather page | Get KOCO on the Go | Subscribe to KOCO 5’s YouTube channel | Sign up for KOCO 5’s Morning NewsletterKOCO 5 Meteorologist Mikayla Smith says heavy rain is likely Saturday night and into Sunday morning, which could cause flooding. Below is what you need to know. Saturday Storm Risk A level 1 has been issued for western and north-central Oklahoma. The risk zone stretches north to Ponca City and stays west of the OKC metro. A few scattered showers are possible Saturday afternoon, but the bulk of the storms won’t come in until late Saturday heading into your Sunday. Showers start to develop around 1 p.m. and continue east by 5:30 p.m. A second round with heavier rain comes into western Oklahoma around 11 p.m. and midnight. That second wave will continue into central Oklahoma, bringing the heavy ran to the OKC metro around 4:30 a.m. Sunday. The heavy rain will linger in central Oklahoma throughout the morning before moving to the east by the late morning and early afternoon. Sunday Storm Risk The severe weather risk is a little bit higher on Sunday, with a level 2 slight risk in western and central Oklahoma. The OKC metro is included in the risk zone. There’s also a level 1 marginal risk in eastern Oklahoma and near Woodward in northwestern Oklahoma. The big thing with Sunday’s storm threat is that it’s a conditional risk. If the storms move out fast enough in the morning, then we’ll see severe weather in the afternoon. KOCO 5 First Alert Weather Team, led by Chief Meteorologist Damon Lane, has been certified by WeatheRate as providing the Most Accurate Forecast in Oklahoma City for 14 consecutive years. This outstanding achievement underscores KOCO 5’s unwavering dedication to delivering reliable weather forecasts to viewers.

It’s day two of a six-day stretch of storm risks in Oklahoma, as rain chances are increasing.

>> Go to the KOCO weather page | Get KOCO on the Go | Subscribe to KOCO 5’s YouTube channel | Sign up for KOCO 5’s Morning Newsletter

Advertisement

KOCO 5 Meteorologist Mikayla Smith says heavy rain is likely Saturday night and into Sunday morning, which could cause flooding. Below is what you need to know.

Saturday Storm Risk

A level 1 has been issued for western and north-central Oklahoma. The risk zone stretches north to Ponca City and stays west of the OKC metro.

april 11, 2026, oklahoma storm risk

Advertisement

A few scattered showers are possible Saturday afternoon, but the bulk of the storms won’t come in until late Saturday heading into your Sunday.

Sunday Storm Risk

The severe weather risk is a little bit higher on Sunday, with a level 2 slight risk in western and central Oklahoma. The OKC metro is included in the risk zone.

There’s also a level 1 marginal risk in eastern Oklahoma and near Woodward in northwestern Oklahoma.

april 11, 2026, oklahoma storm risk

Advertisement

The big thing with Sunday’s storm threat is that it’s a conditional risk. If the storms move out fast enough in the morning, then we’ll see severe weather in the afternoon.


KOCO 5 First Alert Weather Team, led by Chief Meteorologist Damon Lane, has been certified by WeatheRate as providing the Most Accurate Forecast in Oklahoma City for 14 consecutive years. This outstanding achievement underscores KOCO 5’s unwavering dedication to delivering reliable weather forecasts to viewers.

Advertisement

`;
}

function refreshWeatherIframe(containerId) {
var iframeId = ‘weather-iframe-‘ + containerId;
var iframe = document.getElementById(iframeId);
if (iframe && iframe.src) {
var originalSrc = iframe.src;
iframe.src = originalSrc + (originalSrc.indexOf(‘?’) > -1 ? ‘&’ : ‘?’) + ‘t=” + Date.now();
}
}

Advertisement

function initializeWeatherBox(container) {
var containerId = container.getAttribute(“data-container-id’);
var isWeatherBoxV2 = containerId === ‘home-weather-v2’;

function switchWeatherTab(tabName, clickedElement) {
container.querySelectorAll(‘[data-tab-id]’).forEach(function(tab) {
tab.classList.remove(‘open’);
tab.setAttribute(‘aria-selected’, ‘false’);
});

clickedElement.classList.add(‘open’);
clickedElement.setAttribute(‘aria-selected’, ‘true’);

container.querySelectorAll(‘[data-content-id]’).forEach(function(content) {
content.style.display = ‘none’;
content.setAttribute(‘hidden’, ‘true’);
});

var targetContent = container.querySelector(‘[data-content-id=”‘ + tabName + ‘”]’);
if (targetContent) {
targetContent.style.display = ‘block’;
targetContent.removeAttribute(‘hidden’);
}
}

Advertisement

function loadWeatherData() {
// If weather data is already being loaded, wait for it
if (window.weatherDataPromise) {
window.weatherDataPromise.then(function(data) {
if (data && data.data) {
var weatherContainer = container.closest(‘.weather-box-container’);
if (weatherContainer) {
weatherContainer.style.display = ‘flex’;
updateCurrentWeather(data.data);
updateForecastTabs(data.data);
updateWeatherAlertsBar(data.data);
}
}
});
return;
}

var location = { zip: window.DEFAULT_ZIPCODE };

try {
var storedLocations = localStorage.getItem(‘hrst.zip.history’);
if (storedLocations) {
var locations = JSON.parse(storedLocations);
if (locations && locations.length > 0) {
location = locations[0];
}
}
} catch (e) {}

var apiUrl = (window.DEWY_HOSTNAME || ”) + ‘/api/v1/weather/full/’ + location.zip;

if (window.fetch) {
window.weatherDataPromise = fetch(apiUrl)
.then(function(response) { return response.json(); })
.then(function(data) {
if (data && data.data) {
var article = container.closest(‘.article–wrapper’);
var weatherContainer = container.closest(‘.weather-box-container’);
if (weatherContainer) {
weatherContainer.style.display = ‘flex’;
updateCurrentWeather(data.data);
updateForecastTabs(data.data);
updateWeatherAlertsBar(data.data);
}
return data;
}
})
.catch(function(error) {
console.error(‘Error loading weather:’, error);
// Reset to unknown background on error
updateWeatherBackground(‘unknown’);
});
}
}

Advertisement

function updateWeatherAlertsBar(weatherData) {
var weatherWatchHeader = container.querySelector(‘.weather-watch-header’);
if (!weatherWatchHeader) return;

var weatherWatchText = weatherWatchHeader.querySelector(‘.weather-watch-text’);
var weatherWatchLink = weatherWatchHeader.querySelector(‘.weather-watch-link’);

if (weatherData.alerts_count > 0) {
weatherWatchHeader.className=”weather-watch-header has-alerts”;
if (weatherWatchText) {
weatherWatchText.textContent = `Weather Alerts (${weatherData.alerts_count})`;
}
if (weatherWatchLink) {
if (!weatherWatchLink.getAttribute(‘data-initial-href’)) {
weatherWatchLink.setAttribute(‘data-initial-href’, weatherWatchLink.getAttribute(‘href’));
weatherWatchLink.setAttribute(‘data-initial-onclick’, weatherWatchLink.getAttribute(‘onclick’) || ”);
}
weatherWatchLink.setAttribute(‘href’, “https://www.koco.com/alerts”);
weatherWatchLink.setAttribute(‘onclick’, “return handleWeatherLinkClick(event, ‘click_alerts’, ‘click’, ‘mobile-weather’, “https://www.koco.com/alerts”);”);
}
} else {
weatherWatchHeader.className=”weather-watch-header”;
if (weatherWatchText) {
weatherWatchText.textContent = containerId === ‘home-weather-v2’ ? ‘Watch Latest Forecast’ : ‘Latest Forecast’;
}
if (weatherWatchLink) {
var initialHref = weatherWatchLink.getAttribute(‘data-initial-href’);
var initialOnclick = weatherWatchLink.getAttribute(‘data-initial-onclick’);
if (initialHref) {
weatherWatchLink.setAttribute(‘href’, initialHref);
}
if (initialOnclick) {
weatherWatchLink.setAttribute(‘onclick’, initialOnclick);
}
}
}
}

function updateCurrentWeather(weatherData) {
if (weatherData.current) {
var tempValue = weatherData.current.temp_f || ”;
var skyValue = weatherData.current.sky || ”;
var feelsLikeValue = weatherData.current.feels_like_f || weatherData.current.temp_f || ”;

var tempEl = container.querySelector(‘.weather-grid–current-temp-value’);
if (tempEl) {
tempEl.textContent = tempValue;
tempEl.setAttribute(‘aria-label’, tempValue + ‘ degrees Fahrenheit’);
}

Advertisement

var iconEl = container.querySelector(‘.weather-grid–current-icon’);
if (iconEl && weatherData.current.icon_name) {
iconEl.className=”weather-grid–current-icon weather-current-icon icon icon-weather-” + weatherData.current.icon_name;
}

var skyEl = container.querySelector(‘.weather-grid–sky’);
if (skyEl) {
skyEl.textContent = skyValue;
skyEl.setAttribute(‘aria-label’, ‘Current condition: ‘ + skyValue);
}

var feelsEl = container.querySelector(‘.weather-grid–feels’);
if (feelsEl) {
feelsEl.textContent = feelsLikeValue + ‘°F’;
feelsEl.setAttribute(‘aria-label’, feelsLikeValue + ‘ degrees Fahrenheit’);
}

var weatherContainer = container.querySelector(‘.weather-temp-container’);
if (weatherContainer) {
var summary = ‘Current temperature ‘ + tempValue + ‘ degrees Fahrenheit, ‘ +
skyValue + ‘, feels like ‘ + feelsLikeValue + ‘ degrees’;
weatherContainer.setAttribute(‘aria-label’, summary);
}

updateWeatherBackground(weatherData.current.icon_name);
}
}

Advertisement

function updateWeatherBackground(iconName) {
try {
var bgPath = weatherImages.backgrounds[iconName] || weatherImages.backgrounds.unknown;
container.style.backgroundImage=”url(” + bgPath + ‘)’;
} catch (e) {
console.log(‘Error updating weather background:’, e);
}
}

function updateForecastTabs(weatherData) {
var visibleItems = isWeatherBoxV2 ? 6 : 5;

if (weatherData.hourly) {
var hourlyContainer = container.querySelector(‘.weather-hourly-forecast’);
if (hourlyContainer) {
var html=””;
var maxHours = Math.min(visibleItems, weatherData.hourly.length);

for (var i = 0; i 0 ? currentIndex – 1 : tabs.length – 1;
tabs[prevIndex].focus();
break;
case ‘ArrowRight’:
e.preventDefault();
var nextIndex = currentIndex

`;
}

Advertisement

function refreshWeatherIframe(containerId) {
var iframeId = ‘weather-iframe-‘ + containerId;
var iframe = document.getElementById(iframeId);
if (iframe && iframe.src) {
var originalSrc = iframe.src;
iframe.src = originalSrc + (originalSrc.indexOf(‘?’) > -1 ? ‘&’ : ‘?’) + ‘t=” + Date.now();
}
}

function initializeWeatherBox(container) {
var containerId = container.getAttribute(“data-container-id’);
var isWeatherBoxV2 = containerId === ‘home-weather-v2’;

function switchWeatherTab(tabName, clickedElement) {
container.querySelectorAll(‘[data-tab-id]’).forEach(function(tab) {
tab.classList.remove(‘open’);
tab.setAttribute(‘aria-selected’, ‘false’);
});

clickedElement.classList.add(‘open’);
clickedElement.setAttribute(‘aria-selected’, ‘true’);

container.querySelectorAll(‘[data-content-id]’).forEach(function(content) {
content.style.display = ‘none’;
content.setAttribute(‘hidden’, ‘true’);
});

Advertisement

var targetContent = container.querySelector(‘[data-content-id=”‘ + tabName + ‘”]’);
if (targetContent) {
targetContent.style.display = ‘block’;
targetContent.removeAttribute(‘hidden’);
}
}

function loadWeatherData() {
// If weather data is already being loaded, wait for it
if (window.weatherDataPromise) {
window.weatherDataPromise.then(function(data) {
if (data && data.data) {
var weatherContainer = container.closest(‘.weather-box-container’);
if (weatherContainer) {
weatherContainer.style.display = ‘flex’;
updateCurrentWeather(data.data);
updateForecastTabs(data.data);
updateWeatherAlertsBar(data.data);
}
}
});
return;
}

var location = { zip: window.DEFAULT_ZIPCODE };

try {
var storedLocations = localStorage.getItem(‘hrst.zip.history’);
if (storedLocations) {
var locations = JSON.parse(storedLocations);
if (locations && locations.length > 0) {
location = locations[0];
}
}
} catch (e) {}

var apiUrl = (window.DEWY_HOSTNAME || ”) + ‘/api/v1/weather/full/’ + location.zip;

Advertisement

if (window.fetch) {
window.weatherDataPromise = fetch(apiUrl)
.then(function(response) { return response.json(); })
.then(function(data) {
if (data && data.data) {
var article = container.closest(‘.article–wrapper’);
var weatherContainer = container.closest(‘.weather-box-container’);
if (weatherContainer) {
weatherContainer.style.display = ‘flex’;
updateCurrentWeather(data.data);
updateForecastTabs(data.data);
updateWeatherAlertsBar(data.data);
}
return data;
}
})
.catch(function(error) {
console.error(‘Error loading weather:’, error);
// Reset to unknown background on error
updateWeatherBackground(‘unknown’);
});
}
}

function updateWeatherAlertsBar(weatherData) {
var weatherWatchHeader = container.querySelector(‘.weather-watch-header’);
if (!weatherWatchHeader) return;

var weatherWatchText = weatherWatchHeader.querySelector(‘.weather-watch-text’);
var weatherWatchLink = weatherWatchHeader.querySelector(‘.weather-watch-link’);

if (weatherData.alerts_count > 0) {
weatherWatchHeader.className=”weather-watch-header has-alerts”;
if (weatherWatchText) {
weatherWatchText.textContent = `Weather Alerts (${weatherData.alerts_count})`;
}
if (weatherWatchLink) {
if (!weatherWatchLink.getAttribute(‘data-initial-href’)) {
weatherWatchLink.setAttribute(‘data-initial-href’, weatherWatchLink.getAttribute(‘href’));
weatherWatchLink.setAttribute(‘data-initial-onclick’, weatherWatchLink.getAttribute(‘onclick’) || ”);
}
weatherWatchLink.setAttribute(‘href’, “https://www.koco.com/alerts”);
weatherWatchLink.setAttribute(‘onclick’, “return handleWeatherLinkClick(event, ‘click_alerts’, ‘click’, ‘sidelist-weather’, “https://www.koco.com/alerts”);”);
}
} else {
weatherWatchHeader.className=”weather-watch-header”;
if (weatherWatchText) {
weatherWatchText.textContent = containerId === ‘home-weather-v2’ ? ‘Watch Latest Forecast’ : ‘Latest Forecast’;
}
if (weatherWatchLink) {
var initialHref = weatherWatchLink.getAttribute(‘data-initial-href’);
var initialOnclick = weatherWatchLink.getAttribute(‘data-initial-onclick’);
if (initialHref) {
weatherWatchLink.setAttribute(‘href’, initialHref);
}
if (initialOnclick) {
weatherWatchLink.setAttribute(‘onclick’, initialOnclick);
}
}
}
}

function updateCurrentWeather(weatherData) {
if (weatherData.current) {
var tempValue = weatherData.current.temp_f || ”;
var skyValue = weatherData.current.sky || ”;
var feelsLikeValue = weatherData.current.feels_like_f || weatherData.current.temp_f || ”;

Advertisement

var tempEl = container.querySelector(‘.weather-grid–current-temp-value’);
if (tempEl) {
tempEl.textContent = tempValue;
tempEl.setAttribute(‘aria-label’, tempValue + ‘ degrees Fahrenheit’);
}

var iconEl = container.querySelector(‘.weather-grid–current-icon’);
if (iconEl && weatherData.current.icon_name) {
iconEl.className=”weather-grid–current-icon weather-current-icon icon icon-weather-” + weatherData.current.icon_name;
}

var skyEl = container.querySelector(‘.weather-grid–sky’);
if (skyEl) {
skyEl.textContent = skyValue;
skyEl.setAttribute(‘aria-label’, ‘Current condition: ‘ + skyValue);
}

var feelsEl = container.querySelector(‘.weather-grid–feels’);
if (feelsEl) {
feelsEl.textContent = feelsLikeValue + ‘°F’;
feelsEl.setAttribute(‘aria-label’, feelsLikeValue + ‘ degrees Fahrenheit’);
}

var weatherContainer = container.querySelector(‘.weather-temp-container’);
if (weatherContainer) {
var summary = ‘Current temperature ‘ + tempValue + ‘ degrees Fahrenheit, ‘ +
skyValue + ‘, feels like ‘ + feelsLikeValue + ‘ degrees’;
weatherContainer.setAttribute(‘aria-label’, summary);
}

Advertisement

updateWeatherBackground(weatherData.current.icon_name);
}
}

function updateWeatherBackground(iconName) {
try {
var bgPath = weatherImages.backgrounds[iconName] || weatherImages.backgrounds.unknown;
container.style.backgroundImage=”url(” + bgPath + ‘)’;
} catch (e) {
console.log(‘Error updating weather background:’, e);
}
}

function updateForecastTabs(weatherData) {
var visibleItems = isWeatherBoxV2 ? 6 : 5;

if (weatherData.hourly) {
var hourlyContainer = container.querySelector(‘.weather-hourly-forecast’);
if (hourlyContainer) {
var html=””;
var maxHours = Math.min(visibleItems, weatherData.hourly.length);

for (var i = 0; i 0 ? currentIndex – 1 : tabs.length – 1;
tabs[prevIndex].focus();
break;
case ‘ArrowRight’:
e.preventDefault();
var nextIndex = currentIndex

Advertisement

Loading more articles…



Source link

Oklahoma

LANZAMIENTO: Local organizations aiming to continue Tulsa’s food industry growth

Published

on

LANZAMIENTO: Local organizations aiming to continue Tulsa’s food industry growth


TULSA, Okla — Tulsa has seen a boost in its food industry, thanks in part to a growing population.

Local News

Study shows Hispanic population boom boosting Tulsa economy

The Hispanic and Latino population has also contributed to the Oklahoma economy through restaurants, catering businesses, and food trucks.

According to a study conducted by the Oklahoma Employment Security Commission, the number of Hispanic and Latino individuals who have gone into the state’s food service industry has grown by more than 12,000 between 2001 and 2021.

Advertisement

To help continue this growth, the Lobeck Taylor Family Foundation is starting up its “Lanzamiento Program” for Spanish speakers who are interested in pursuing a career in the culinary industry.

Local News

Mother Road Market hosts program for Hispanic, Latino food entrepreneurs

The classes are held in partnership with Mother Road Market for 12 weeks.

Wendy Henriquez is the owner of Sugar Crave and completed the program back in 2024.

She said it was a huge help when it came to learning the ins and outs of the industry.

Advertisement

It also helped her that it was all in Spanish, the language she prefers.

“All of the classes were focused on the regulations here in the United States and Oklahoma needing to be met,” she said. “In every class, we had experts talk to us about things like taking out loans, insurance, credit.”

“Wow, I mean it isn’t easy, but it’s possible,” she said. “Perseverance is important.”

Abel Aguilar is the Program Manager in charge of the Lanzamiento course.

“We believe it’s important because not only do we have a strong population of both Hispanic and Latin entrepreneurs here in Tulsa, they may not know the resources that they have available to them,” he said.

Advertisement

While tuition doesn’t start off as being free of charge, there are financial assistance options to help.

We Street Credit Union has also pitched in to offer funds for financial assistance so some weight can be taken off of the participant.

Aguilar also said Lobeck Taylor will work something out if finances are the only obstacle to applying.

For others interested in other resources to help kickstart their business, Avanzando Juntos is also a non-profit organization that can help.

Primarily for Spanish speakers, Avanzando Juntos helps connect business owners with grants and funding that can help eliminate some of the costs that come with starting a business.

Advertisement

For those interested in applying to the “Lanzamiento” Program, you can visit the Kitchen 66 website for the application.


Isabel Flores is your North & East Tulsa reporter.

Is there something you think she should know about or look into?

You can email her at Isabel.Flores@kjrh.com.



Stay in touch with us anytime, anywhere —

Advertisement





Source link

Continue Reading

Oklahoma

5 Things To Know: Oklahoma County inmate death, deadly OKC hit-and-run

Published

on

5 Things To Know: Oklahoma County inmate death, deadly OKC hit-and-run


1. Death of inmate at Oklahoma County Detention Center under investigation

A mugshot photo of Dancing Feathers Whitecrow.

Oklahoma County Detention Center.

• 33-year-old Dancing Feathers Whitecrow found unresponsive
• Taken to hospital where she was pronounced dead
• Active investigation ongoing

Advertisement

Officials are investigating the death of an inmate at the Oklahoma County Detention Center.

Officers found 33-year-old Dancing Feathers Whitecrow unresponsive just before 7 p.m. Sunday. She was taken to the hospital and pronounced dead. Whitecrow had been booked into the jail in April.

This remains an active investigation.

A mugshot photo of Dancing Feathers Whitecrow.

The Oklahoma County Criminal Investigations Division is investigating after Dancing Feathers Whitecrow, 33, died in custody.

2. Deadly hit-and-run in southwest Oklahoma City

• Pedestrian struck and killed near Southwest 61st and May
• Crash happened just before midnight
• No description of the vehicle yet

Advertisement

Oklahoma City Police are investigating a deadly hit-and-run that happened late Tuesday in southwest Oklahoma City.

One person was struck and killed by a vehicle near Southwest 61st and May just before midnight on Wednesday.

Police say they currently have no description of the vehicle involved.

3. Elderly Moore woman mauled to death by dog

• 86-year-old Beatrice Carruth found dead July 2nd
• Dog belonged to her son, who was previously arrested in a related incident
• Dog has been euthanized

Advertisement

An 86-year-old Moore woman was mauled to death in her home by her son’s dog.

Beatrice Carruth was found dead on July 2nd. Family members say the dog, a Labrador and American Pit Bull Terrier mix, had previously attacked her in May.

The dog was euthanized Monday.

The Moore Police Department arrived at the scene near Northeast 27th Street and Highland Drive to find a woman with severe injuries.

Advertisement

4. Cattle rescue after semi overturns on I-40 near Tinker

Advertisement
A semi-truck hauling cattle lies overturned on I-40 near Tinker Air Force Base after a crash, with responders and ranchers working to secure the animals.
A semi-truck hauling cattle lies overturned on I-40 near Tinker Air Force Base after a crash, with responders and ranchers working to secure the animals.

News 9

• Mayberry family from Oklahoma City Stockyards helped clear the scene
• 109 head of cattle in trailer; more than 80 survived
• Similar crashes have happened in recent years

A family of ranchers helped rescue cattle after a semi overturned on I-40 near Tinker Air Force Base.

The Mayberry family responded to the scene and worked to safely remove the animals. They say they’ve assisted with several similar crashes over the past four years.

Advertisement

A trailer carrying 62 head of cattle overturned Tuesday morning, leaving only a single westbound lane of I-40 open for hours as crews rescued trapped animals.

Advertisement

5. Attorney General Drummond sues Allstate over insurance practices

• Lawsuit accuses company of denying or underpaying wind and hail claims
• Alleges use of undisclosed restrictive standards
• Similar lawsuit previously filed against State Farm

Attorney General Gentner Drummond is suing Allstate, accusing the insurance company of running a scheme to deny or underpay wind and hail claims.

The lawsuit alleges Allstate used undisclosed restrictive standards to limit coverage for Oklahomans. Drummond says the company is putting profits ahead of policyholders.

Advertisement

A similar lawsuit was previously filed against State Farm.

The lawsuit was filed Tuesday in Cleveland County District Court and alleges violations of state consumer protection and anti-racketeering laws.

Advertisement

———

Editor’s note: We used AI tools to help with editing and formatting this story. A human journalist reviewed everything before publication.





Source link

Advertisement
Continue Reading

Oklahoma

NCAA Not Done with Kashie Natt, Oklahoma State After Legal Ruling

Published

on

NCAA Not Done with Kashie Natt, Oklahoma State After Legal Ruling


The NCAA is not done with Oklahoma State Guard Kashie Natt and his eligibility case, based on the organization’s statement on Tuesday.

On Monday, Natt received an ex parte ruling that kept the NCAA from enforcing its decision to cancel Natt’s waiver request to play in 2026-27. That ruling, from District Judge John Canavan, allows Natt to practice with the team, participate in all team activities and participate in any athletics-related benefits.

It also bars the NCAA from punishing Natt or Oklahoma State while the case is working its way through the court.

Advertisement

By its nature, an ex parte ruling is made after only hearing one side of the case. The NCAA posted a statement disagreeing with the ruling, including an explanation for why they canceled the waiver and will continue to pursue the case in court.

The NCAA’s Statement on Kashie Natt

Advertisement

NCAA logo. | IMAGN IMAGES via Reuters Connect

Advertisement

The NCAA posted the statement to social media and was signed by the organization’s chief legal officer, Scott Bearby.

“The order in the Natt case, issued without the NCAA having any opportunity to respond and by a judge not even assigned to hear the case, is demonstrably flawed and the latest instance of an environment where litigation has become a tool to avoid playing by the rules that everyone has agreed to follow.  The student-athlete at issue already benefited from the ‘Pavia waiver,’ which provided him the opportunity to play for a fifth season, and nobody, including the institution where he seeks to compete next year, has ever expressed any doubt that his collegiate career ended when the Pavia waiver expired. We will pursue all remedies to seek reversal of this decision, which contributes to the instability in college sports that only Congress can solve.”

The Pavia case, which was a suit called Pavia v. NCAA, was brought on behalf of Vanderbilt quarterback Deigo Pavia, who started his career in junior college. He received a preliminary injunction in 2025 after he challenged the NCAA’s system for junior college and NCAA eligibility, saying that his juco years counting toward his NCAA eligibility irreparably harmed his ability to leverage NIL.

The NCAA ultimately conceded and granted a blanket waiver that extended an extra year of eligibility to similar athletes. The NCAA believes that bucket includes Natt. He started his career five schools year ago at Southern University-Shreveport, a junior college. He followed that with three years at NAIA LSU-Alexandria and then one more year at Sam Houston.

Advertisement

Natt’s attorney, Darren Heitner, contends that Natt’s NCAA clock should have started when he began his career at LSU-Alexandria and therefore has one more year to play.

Advertisement

The case is still pending. A new court date has not been set yet.  

Add us as a preferred source on Google



Source link

Continue Reading
Advertisement

Trending