Skip to content

Commit

Permalink
fix: address feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
wescopeland committed Jan 26, 2025
1 parent 772d5a0 commit 761caa8
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ public function select(): ?Game
->whereHas('games', function ($query) {
$query->where('game_id', '!=', $this->sourceGame->id); // needs other games too!
})
->where('Title', 'NOT LIKE', "%Meta%")
->where('Title', 'NOT LIKE', "%Misc%")
->where('Title', 'NOT LIKE', "%Meta - %")
->where('Title', 'NOT LIKE', "%Misc. - %")
->inRandomOrder()
->first();

Expand Down

0 comments on commit 761caa8

Please sign in to comment.