Skip to content

Commit

Permalink
Little hologram patch
Browse files Browse the repository at this point in the history
  • Loading branch information
WillFP committed Dec 20, 2023
1 parent c1a7027 commit 08a3dae
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,8 @@ class PlacedCrate(

if (currentFrame != frameToShow && frameToShow != null) {
currentFrame = frameToShow
hologram.setContents(frameToShow.lines)
@Suppress("USELESS_ELVIS")
hologram.setContents(frameToShow.lines ?: emptyList())
}
}

Expand Down

0 comments on commit 08a3dae

Please sign in to comment.