Skip to content

Commit

Permalink
Maybe fixed the hidden gyms menu
Browse files Browse the repository at this point in the history
  • Loading branch information
Ninjasoturi committed Apr 17, 2024
1 parent 614d594 commit 4867cf6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion logic/gymMenu.php
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ function createGymKeys($buttonAction, $showHidden, $gymareaId, $gymareaQuery, $s
);
while ($gym = $rs->fetch()) {
// Add first letter to keys array
$keys[] = button($gym['first_letter'], ['gymMenu', 'a' => $buttonAction, 'stage' => $stage+1, 'fl' => $gym['first_letter'], 'ga' => $gymareaId]);
$keys[] = button($gym['first_letter'], ['gymMenu', 'a' => $buttonAction, 'stage' => $stage+1, 'fl' => $gym['first_letter'], 'h' => $showHidden, 'ga' => $gymareaId]);
}

// Get the inline key array.
Expand Down

0 comments on commit 4867cf6

Please sign in to comment.