Report: Cavaliers’ Garland expected to play Game 3 vs. Pacers

The Cleveland Cavaliers could be getting a much-needed boost ahead of Friday’s high-stakes showdown.

May 9, 2025 - 19:19
 0
Report: Cavaliers’ Garland expected to play Game 3 vs. Pacers

The Cleveland Cavaliers could be getting a much-needed boost ahead of Friday’s high-stakes showdown.

Guard Darius Garland is expected to play in Game 3 of the Eastern Conference semifinals against the Indiana Pacers, ESPN’s Shams Charania reported.

Injured forwards Evan Mobley and De’Andre Hunter are also aiming to suit up for the game, Charania added.

All three players were present at the team’s shootaround on Friday morning.

The Cavaliers are currently down 2-0 in the series, with both losses coming at home, and now travel to Indianapolis for Game 3 at Gainbridge Fieldhouse.

Garland has missed the Cavaliers’ last four games after suffering a sprained big toe in Game 2 of the team’s first-round series against the Miami Heat. In the two playoff games he has suited up for, Garland averaged 24 points, 2.5 rebounds and seven assists while shooting 51.6 per cent from the field and 41.2 per cent from three-point range.

Meanwhile, Mobley, the league’s Defensive Player of the Year, and Hunter were both injured in a 26-second span in the fourth quarter of Game 1 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. Mobley is averaging 17 points and 7.2 rebounds in the playoffs.

Hunter, averaging 23.8 minutes off the bench in the post-season, dislocated the thumb on his right shooting hand after Bennedict Mathurin blocked his running dunk attempt.

Despite missing all three players, the Cavaliers nearly came away with a win in Game 2, only to lose in the final seconds after a Tyrese Haliburton three-pointer. Game 3 of the series tips off at 7:30 p.m. ET / 4:30 p.m. PT.

–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 = `

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_49453f7fcb6d84d6fc053426b5057475', 'nba', '764171e9-1ccf-4861-b472-282d1e421b39');