Skip to content

Commit

Permalink
please 😭
Browse files Browse the repository at this point in the history
  • Loading branch information
ILike2WatchMemes committed Jul 5, 2024
1 parent 7d59e98 commit 47efc26
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,8 @@ object ExperimentsDisplay {
}

private fun isOutOfBounds(slot: Int, experiment: Experiments) =
slot <= experiment.startSlot || slot >= experiment.startSlot + experiment.gridSize + 7 ||
slot <= experiment.startSlot ||
slot >= experiment.startSlot + experiment.gridSize + 7 ||
listOf(17, 18, 26, 27, 35, 36).contains(slot)

private fun isEnabled() =
Expand Down

0 comments on commit 47efc26

Please sign in to comment.