Stars’ Roope Hintz out for Game 3 vs. Oilers following slash from Nurse

Both teams will be without key players for Game 3 of the Western Conference Final as Edmonton’s Mattias Ekholm and Dallas’s Roope Hintz were ruled out ahead of puck drop.

Stars’ Roope Hintz out for Game 3 vs. Oilers following slash from Nurse

The Dallas Stars will be without a key centre as they look for a 2-1 series lead in the Western Conference Final.

Roope Hintz will not play in Sunday’s Game 3 against Edmonton after he left Game 2 following a slash from the Oilers’ Darnell Nurse. Fellow centre Oskar Bäck will step into the lineup in his place.

Meanwhile, the Oilers will once again have to wait for a blue-line boost.

Injured defenceman Mattias Ekholm remains out of the lineup, head coach Kris Knoblauch told reporters.

Live coverage of the game will be available on Sportsnet and Sportsnet+ beginning at 3 p.m. ET / 1 p.m. MT.

The Stars and Oilers split the first two games of the series in Dallas.

  • Stanley Cup Playoffs on Sportsnet
  • Stanley Cup Playoffs on Sportsnet

    The Edmonton Oilers host the Dallas Stars for Game 3 of the Western Conference Final with the series tied 1-1. Watch live Sunday on Sportsnet and Sportsnet+ with coverage starting at 2:30 p.m. ET / 12:30 p.m. MT.

    Broadcast Schedule

Hintz, 28, recorded five goals and six assists in 14 playoff games for the Stars prior to Game 2.

The play that knocked him out caused controversy between the teams but only resulted in a minor penalty against Nurse.

Bäck, 25, has two assists in nine playoff games this season after recording 16 points (four goals, 12 assists) in 73 regular-season contests.

Ekholm has not appeared in these playoffs after suffering an undisclosed injury in April.

The 34-year-old has been considered day-to-day throughout this series, sparking hopes of a quicker return than expected after his initial timeline was set at 15 weeks, per Sportsnet’s Elliotte Friedman on the 32 Thoughts Podcast.

Eklhom recorded nine goals and 33 points this season while logging over 22 minutes of ice time a night. He has 12 goals and 52 points in 112 career playoff games.

During Edmonton’s run to the Stanley Cup Final last year, the six-foot-five, 225-pound defenceman potted five goals and played nearly 22 minutes a night.

While the Oilers wait for the big Swede, their lineup will remain the same as it was in Game 2 on Sunday.

if (!res.ok) { throw new Error('Failed to fetch odds data'); }

const data = await res.json(); const oddsData = data?.data?.game?.details?.current_line; const visitingTeam = data?.data?.game?.visiting_team; const visitingTeamLogo = data?.data?.game?.visiting_team?.image_url_90; const homeTeam = data?.data?.game?.home_team; const homeTeamLogo = data?.data?.game?.home_team?.image_url_90; const gameTimestamp = data?.data?.game?.details?.timestamp;

return { oddsData, visitingTeam, visitingTeamLogo, homeTeam, homeTeamLogo, gameTimestamp }; }

async function renderBetMGM(componentId, league, gameId) { let oddsData, visitingTeam, visitingTeamLogo, homeTeam, homeTeamLogo, gameTimestamp, error;

const container = document.getElementById(componentId + '-odds'); if (!container) return;

try { ({ oddsData, visitingTeam, visitingTeamLogo, homeTeam, homeTeamLogo, gameTimestamp } = await fetchOddsData(league, gameId)); } catch (err) { error = err.message; }

if (error) { container.innerHTML = `

Error: ${error}

`; return; }

if (!oddsData) { container.innerHTML = `

Odds data not available

`; return; }

let gameDate = new Date(gameTimestamp * 1000); const gameDateFormatted = gameDate.toLocaleDateString('en-US', { year: 'numeric', month: 'long', day: 'numeric' });

container.innerHTML = `

BetMGM Odds
Moneyline
${visitingTeam.short_name}
${oddsData.away_money > 0 ? `+${oddsData.away_money}` : oddsData.away_money}
${homeTeam.short_name}
${oddsData.home_money > 0 ? `+${oddsData.home_money}` : oddsData.home_money}
Spread
${oddsData.fav_id === visitingTeam.id ? oddsData.fav_points : oddsData.fav_points > 0 ? `-${oddsData.fav_points}` : `+${Math.abs(oddsData.fav_points)}`}
${oddsData.fav_id === visitingTeam.id ? oddsData.fav_money > 0 ? `+${oddsData.fav_money}` : oddsData.fav_money : oddsData.underdog_money > 0 ? `+${oddsData.underdog_money}` : oddsData.underdog_money}
${oddsData.fav_id === homeTeam.id ? oddsData.fav_points : oddsData.fav_points > 0 ? `-${oddsData.fav_points}` : `+${Math.abs(oddsData.fav_points)}`}
${oddsData.fav_id === homeTeam.id ? oddsData.fav_money > 0 ? `+${oddsData.fav_money}` : oddsData.fav_money : oddsData.underdog_money > 0 ? `+${oddsData.underdog_money}` : oddsData.underdog_money}
Over/Under
O ${oddsData.total}
${oddsData.over_money > 0 ? `+${oddsData.over_money}` : oddsData.over_money}
U ${oddsData.total}
${oddsData.under_money > 0 ? `+${oddsData.under_money}` : oddsData.under_money}

`; }

// Example usage renderBetMGM('block_e83d8e23c4719eb1825dbb034a9f73d5', 'NHL', 'ae71ee39-033c-4c79-bfe4-b9a39de51ad1');