Flames defenceman Kevin Bahl out of lineup against Jets

Calgary Flames defenceman Kevin Bahl will miss Sunday’s road game against the Winnipeg Jets.

Jan 26, 2025 - 20:54
 0
Flames defenceman Kevin Bahl out of lineup against Jets

Calgary Flames defenceman Kevin Bahl will miss Sunday’s road game against the Winnipeg Jets due to an undisclosed injury.

Bahl left during the second period of Saturday’s 5-4 win against the Minnesota Wild after he was hit from behind by Jakub Lauko and went head-first into the boards.

Although Bahl skated off the ice under his own power, he was ruled out for the remainder of the game as the third period began, according to the broadcast.

Lauko received a two-minute minor for boarding.

Flames head coach Ryan Huska told reporters Bahl will be re-evaluated when the team returns to Calgary.

Defenceman Jake Bean will replace Bahl in Calgary’s lineup versus Winnipeg.

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_e8d82ae959c52fc2e6750f523a9139e1', 'NHL', 'a41c37fd-386f-4d04-9da2-368c659273ab');

Bahl has recorded two goals and 14 points in 47 games during his first season with the Flames.

The 24-year-old was acquired from the New Jersey Devils last June along with a first-round draft pick in exchange for goaltender Jacob Markstrom.

The Flames (24-16-7) are fourth in the Pacific Division and look to prolong their three-game winning streak when they face the Central-leading Jets (33-14-3).