Improved the comment added in the previous commit

This commit is contained in:
Tim203 2021-05-30 00:51:04 +02:00
parent 360e2f4b9a
commit db583135eb
No known key found for this signature in database
GPG Key ID: 064EE9F5BF7C3EE8
1 changed files with 3 additions and 1 deletions

View File

@ -582,7 +582,9 @@ public class GeyserSession implements CommandSender {
protocol = new MinecraftProtocol(authenticationService.getSelectedProfile(), authenticationService.getAccessToken());
} else {
// always replace spaces when using Floodgate,
// as usernames with spaces cause issues with Bungeecord's login cycle
// as usernames with spaces cause issues with Bungeecord's login cycle.
// However, this doesn't affect the final username as Floodgate is still in charge of that.
// So if you have (for example) replace spaces enabled on Floodgate the spaces will re-appear.
String validUsername = username;
if (remoteAuthType == AuthType.FLOODGATE) {
validUsername = username.replace(' ', '_');