3
0
Mirror von https://github.com/PaperMC/Velocity.git synchronisiert 2024-11-17 05:20:14 +01:00

Merge branch 'dev/3.0.0' into dev/5.0.0

Dieser Commit ist enthalten in:
Andrew Steinborn 2023-03-15 23:03:43 -04:00
Commit a575324009

Datei anzeigen

@ -1244,7 +1244,10 @@ public class ConnectedPlayer implements MinecraftConnectionAssociation, Player,
@Override
public void fireAndForget() {
connectWithIndication();
connectWithIndication().exceptionally((ex) -> {
logger.error("Exception while connecting with indication", ex);
return null;
});
}
}
}