Make berry dash launcher leaderboards work
This commit is contained in:
@@ -9,7 +9,7 @@ $stmt->close();
|
||||
|
||||
if ($result->num_rows > 0) {
|
||||
$topPlayers = [];
|
||||
|
||||
|
||||
while ($row = $result->fetch_assoc()) {
|
||||
$id = $row["id"];
|
||||
$stmt = $conn1->prepare("SELECT legacy_high_score, save_data FROM userdata WHERE id = ? AND legacy_high_score > 0 LIMIT 1");
|
||||
|
||||
@@ -14,7 +14,7 @@ if (
|
||||
exit;
|
||||
}
|
||||
$post = getPostData();
|
||||
$request_type = $post['type'] ?? '';
|
||||
$request_type = $post['type'] ?? isLauncher() ? '0' : '';
|
||||
$conn0 = newConnection(0);
|
||||
$conn1 = newConnection(1);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user