NHL investigating Cousins’ shot at Maple Leafs’ Stolarz in warmup
The NHL is investigating the Ottawa Senators for shooting pucks at Toronto Maple Leafs goalie Anthony Stolarz during warmup ahead of Thursday’s Game 3, Sportsnet’s Elliotte Friedman reported on Friday.

The Battle of Ontario just got turned up a notch.
The NHL is investigating an incident of Ottawa Senators forward Nick Cousins shooting a puck at Toronto Maple Leafs goalie Anthony Stolarz during warmup ahead of Thursday’s Game 3, Sportsnet confirmed on Friday.
It is unclear whether discipline will follow.
Stolarz drew the Senators’ ire after a series of slashes against Ottawa forward Ridly Greig led to offsetting minors for both players in Game 2.
Greig crashed into Stolarz’s lower body on a rush in Game 1.
After Game 3, Stolarz said he’d made a pre-game deal with the officiating crew.
“Watch my back, and I’ll behave,” he said.
The Maple Leafs earned their second straight 3-2 overtime victory in Game 3, pushing the Senators to the brink of elimination with a 3-0 series lead.
Game 4 goes Saturday at 7 p.m. ET / 4 p.m. PT on Sportsnet and Sportsnet+.
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_b5f2c0d94d122b80575379842023d651', 'NHL', '5f344c0e-6ba8-43a1-9ab3-2befec74fd2c');