Merge branch 'dev/3.0.0' into dev/5.0.0

This commit is contained in:
Andrew Steinborn
2023-03-15 23:03:43 -04:00

View File

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