The injury bug won’t let go of the Toronto Raptors.

RJ Barrett (ankle), Jakob Poeltl (back), Sandro Mamukelashvili (illness), Immanuel Quickley (back spasms) and Garrett Temple (back spasms) will all be out when the Raptors face the Indiana Pacers on Wednesday night, per the team.

Quickley and Mamukelashvili were both late adds to the injury report on Wednesday morning.

Barrett suffered the injury late in Friday’s 125-117 loss to the Boston Celtics. He limped to the locker room and was unable to finish the contest. 

Barrett previously missed 15 games with a knee injury, and the Raptors went 6-9 in his absence.

The Canadian is averaging 19.6 points, five rebounds and 3.7 assists through 23 games this season.

The seven-foot Poeltl has been nursing a lower back injury all season. He played only seven minutes before having to exit against the Brooklyn Nets on Dec. 21.

The 30-year-old’s production decreased this season while he’s dealt with the back issues. Poeltl is averaging 9.7 points, 7.7 rebounds and 2.1 assists through 21 appearances on the heels of a career-best season in 2024-25, which earned the 30-year-old a three-year, $84-million extension in the off-season.

The Raptors, who are third in the Atlantic at 24-17, face the 9-31 Pacers in Indianapolis on Wednesday.

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_8a4a1a7c3f1b10793959e7e5e97f0734', 'NBA', '356dc947-104c-4666-b3c7-dc28d7336b00');