Oilers’ Ryan Nugent-Hopkins to take warmups before Game 3 vs. Panthers
Edmonton Oilers forward Ryan Nugent-Hopkins is still a game-time decision for Game 3 of the Stanley Cup Final, but head coach Kris Knoblauch said he will take the ice for warmups ahead of Monday night’s game.

Edmonton Oilers forward Ryan Nugent-Hopkins is still a game-time decision for Game 3 of the Stanley Cup Final, but head coach Kris Knoblauch said he will take the ice for warmups ahead of Monday night’s game.
Nugent-Hopkins was back on the ice Monday for the team’s optional morning skate, a day after missing practice. The team did not provide a reason for his absence.
Knoblauch told reporters Sunday that Nugent-Hopkins was listed as a game-time decision but believed he would play.
-
-
Watch the Stanley Cup Final on Sportsnet
With the Stanley Cup within reach, the Edmonton Oilers and Florida Panthers are set to battle once again for hockey’s ultimate prize. Watch every game of the Final on Sportsnet and Sportsnet+.
Jeff Skinner filled in for Nugent-Hopkins on the top line alongside Connor McDavid and Corey Perry during the practice.
“I just prepare like I’m in, we’ll see if (Nugent-Hopkins) is good to go and we’ll see,” Skinner said Monday morning.
Nugent-Hopkins is fourth on the team in scoring during the playoffs with 18 points (five goals and 13 assists) in 18 games.
He was held off the scoresheet during the first two games of the Stanley Cup Final.
The 32-year-old from Burnaby, B.C., also finished fourth on the team in scoring during the regular season with 49 points (20 goals and 29 assists) in 78 games.
Florida hosts Game 3 with the series knotted up 1-1.
Watch live on Sportsnet and Sportsnet+ starting at 8 p.m. ET / 6 p.m. MT.
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 = `
`; return; }
if (!oddsData) { container.innerHTML = `
`; return; }
let gameDate = new Date(gameTimestamp * 1000); const gameDateFormatted = gameDate.toLocaleDateString('en-US', { year: 'numeric', month: 'long', day: 'numeric' });
container.innerHTML = `
`; }
// Example usage renderBetMGM('block_3cffdb2de36092a8f4c20755c5485627', 'NHL', 'facf5734-57d1-4483-b747-98098924b5ec');