Backported 1.5 save account

This commit is contained in:
2025-09-12 08:02:41 -07:00
parent 6445cc45d3
commit f0b6bd617a
2 changed files with 51 additions and 0 deletions

View File

@@ -12,6 +12,10 @@ if (isAllowedDatabaseVersion(getClientVersion())) {
require __DIR__ . '/backported/1.2-beta2/syncAccount.php';
exit;
}
if (getClientVersion() == "1.5.0" || getClientVersion() == "1.5.1" || getClientVersion() == "1.5.2") {
require __DIR__ . '/backported/1.5/saveAccount.php';
exit;
}
}
checkClientDatabaseVersion();