Skip to content

Commit

Permalink
Merge branch 'master' into remove-feature-beat-flag
Browse files Browse the repository at this point in the history
  • Loading branch information
wescopeland authored Nov 25, 2023
2 parents dab9a7f + 807eab4 commit 2d70451
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion app/Helpers/database/achievement.php
Original file line number Diff line number Diff line change
Expand Up @@ -415,7 +415,7 @@ function updateAchievementFlag(int|string|array $achID, int $newFlag): void

$achievements->update(['Flags' => $newFlag]);

$updatedAchievements = $achievements->get();
$updatedAchievements = Achievement::whereIn('ID', $achievementIDs)->get();

foreach ($updatedAchievements as $achievement) {
if ($newFlag === AchievementFlag::OfficialCore) {
Expand Down
6 changes: 4 additions & 2 deletions resources/views/components/menu/main.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,10 @@
["systemName" => "PC-8000/8800", "listID" => 47],
["systemName" => "PC-FX", "listID" => 49],
],
"SNK" => [
["systemName" => "Neo Geo CD", "listID" => 56],
["systemName" => "Neo Geo Pocket", "listID" => 14],
],
],
[
"Other" => [
Expand All @@ -65,8 +69,6 @@
["systemName" => "Magnavox Odyssey 2", "listID" => 23],
["systemName" => "Mega Duck", "listID" => 69],
["systemName" => "MSX", "listID" => 29],
["systemName" => "Neo Geo CD", "listID" => 56],
["systemName" => "Neo Geo Pocket", "listID" => 14],
["systemName" => "Uzebox", "listID" => 80],
["systemName" => "Vectrex", "listID" => 46],
["systemName" => "WASM-4", "listID" => 72],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ class="transition-all"
>
<hr class="mt-2 border-embed-highlight">

<div class="py-4 @if ($variant === 'user-recently-played') flex flex-wrap -mx-1 sm:mx-0 sm:px-4 @endif">
<div class="py-4 @if ($variant === 'user-recently-played') flex flex-wrap px-0.5 sm:px-4 @endif">
{{ $slot }}
</div>
</div>
Expand Down

0 comments on commit 2d70451

Please sign in to comment.