While Social Links have code that should open the link in the user's browser, this never actually happens because AWT does not support that functionality while running in headless mode which Minecraft enables on startup.
The code should be changed to use Minecraft's builtin Util.getPlatform().openUri(URI) method which will work correctly.
While Social Links have code that should open the link in the user's browser, this never actually happens because AWT does not support that functionality while running in headless mode which Minecraft enables on startup.
The code should be changed to use Minecraft's builtin
Util.getPlatform().openUri(URI)method which will work correctly.