mirror of
https://github.com/GeyserMC/Geyser.git
synced 2024-08-14 23:57:35 +00:00
Clean up jar file classes a bit
This commit is contained in:
parent
7474d2c745
commit
323394d2b5
4 changed files with 38 additions and 3 deletions
|
@ -732,7 +732,11 @@ public class GeyserSession implements GeyserConnection, GeyserCommandSource {
|
|||
return;
|
||||
}
|
||||
|
||||
connectDownstream();
|
||||
try {
|
||||
connectDownstream();
|
||||
} catch (Throwable t) {
|
||||
t.printStackTrace();
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
|
@ -776,7 +780,11 @@ public class GeyserSession implements GeyserConnection, GeyserCommandSource {
|
|||
return;
|
||||
}
|
||||
|
||||
connectDownstream();
|
||||
try {
|
||||
connectDownstream();
|
||||
} catch (Throwable t) {
|
||||
t.printStackTrace();
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
|
@ -850,7 +858,12 @@ public class GeyserSession implements GeyserConnection, GeyserCommandSource {
|
|||
selectedProfile,
|
||||
service.getAccessToken()
|
||||
);
|
||||
connectDownstream();
|
||||
try {
|
||||
connectDownstream();
|
||||
} catch (Throwable t) {
|
||||
t.printStackTrace();
|
||||
return false;
|
||||
}
|
||||
|
||||
// Save our refresh token for later use
|
||||
geyser.saveRefreshToken(bedrockUsername(), service.getRefreshToken());
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue