Cavaliers’ Mobley, Garland, Hunter out for Game 2 vs. Pacers
Calling the Cleveland Cavaliers shorthanded for Game 2 Tuesday against the Indiana Pacers would be an understatement.

Calling the Cleveland Cavaliers shorthanded for Game 2 Tuesday against the Indiana Pacers would be an understatement.
Cleveland will be without key rotation pieces Darius Garland, Evan Mobley and De’Andre Hunter for the contest.
The Cavaliers announced that Dean Wade and Ty Jerome would step into the starting five as they look to erase a 1-0 deficit in the Eastern Conference semifinal.
Mobley and Hunter were both injured in a 26-second span in the fourth quarter of what was a close Game 1 before Indiana took control and pulled away for a 121-112 victory in on Sunday night.
Mobley sprained his left ankle when he was boxed out by Indiana’s Myles Turner and didn’t have room to land after his turnaround hook shot went in to put the Cavs up 99-98 with 8:10 remaining.
On Cleveland’s ensuing possession, Hunter dislocated the thumb on his shooting hand after Bennedict Mathurin blocked his running dunk attempt. Hunter landed hard on his right hand out of bounds after the shot was blocked. The Cavs lost the replay review when Mathurin’s block was considered clean.
Garland has missed the last three games due to a sprained left big toe.
Garland’s presence on defence was certainly missed on Sunday after Tyrese Haliburton had 22 points and 13 assists, along with three blocked shots. The Cavs were outscored by 10 points when Sam Merrill, Garland’s replacement, was on the floor.
Cleveland finished the regular season with an East-leading 64-18 record. It dispatched the Miami Heat in four games in the opening round of the playoffs.
— With files from the Associated Press
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_a2a13007485440c925c5d328600dd4af', 'NBA', 'c8abb602-7854-4aab-b15b-ab2c8bf6838b');