diff --git a/frontend/views/pages/cfb/game.ejs b/frontend/views/pages/cfb/game.ejs index 6c67203..ba5c935 100644 --- a/frontend/views/pages/cfb/game.ejs +++ b/frontend/views/pages/cfb/game.ejs @@ -1258,7 +1258,8 @@ function buildPlayTable(plays, prefix, expandable, errorMsg, showGuide, expandin
<% - var currentDrives = gameData.drives.current || []; + var curDrive = gameData.drives.current + var currentDrives = (curDrive != null) ? [curDrive] : []; var gameDrives = [...gameData.drives.previous, ...currentDrives] var subTitle = "" if (gameData.gameInfo.status.type.completed != true) {