Marketplace data

This commit is contained in:
2025-08-20 14:01:13 -07:00
parent f460c1b650
commit 5a47e60bfb
4 changed files with 12 additions and 3 deletions

View File

@@ -26,9 +26,11 @@ if ($result->num_rows > 0) {
"totalSlowBerries" => (string)$row['totalSlowBerries'],
"totalUltraBerries" => (string)$row['totalUltraBerries'],
"totalSpeedyBerries" => (string)$row['totalSpeedyBerries'],
"totalCoinBerries" => (string)$row['totalCoinBerries'],
"totalAttempts" => (string)$row['totalAttempts'],
"birdColor" => json_decode((string)$row['birdColor']),
"overlayColor" => json_decode((string)$row['overlayColor'])
"overlayColor" => json_decode((string)$row['overlayColor']),
"marketplaceData" => json_decode((string)$row['marketplaceData'])
]));
} else {
echo encrypt(json_encode(["success" => false, "message" => "Invalid session token or username, please refresh login"]));