mirror of
https://github.com/OpenFusionProject/Client.git
synced 2024-11-23 05:50:09 +00:00
b837fbc7df
This simplifies some logic, and lets us do a sweet transition from server list to in-game.
14 lines
252 B
JavaScript
14 lines
252 B
JavaScript
// Write loginInfo.php, assetInfo.php, etc.
|
|
function setGameInfo(uuid) {
|
|
|
|
}
|
|
|
|
function connectToServer() {
|
|
stopEasterEggs();
|
|
$('#of-serverselector').fadeOut('slow', function() {
|
|
setTimeout(function(){
|
|
launchGame();
|
|
}, 200);
|
|
});
|
|
}
|