Compatibility
Minecraft: Java Edition
1.21.x
1.20.x
1.19.x
1.18.x
1.17.x
1.16.x
1.15.x
1.14.x
1.13.x
1.12.x
1.11.x
1.10.x
1.9.x
1.8.x
1.7.x
1.6.4
1.6.1–1.6.2
1.5.x
1.4.4–1.4.7
1.4.2
1.3.x
1.2.x
1.1
1.0
Platforms
Fabric
Supported environments
90% of ad revenue goes to creators
Support creators and Modrinth ad-free with Modrinth+Details
Licensed MIT
Published 8 months ago
Updated 3 months ago
IP as Server Name
Overview
When adding a new server, if a name isn't provided, the mod will save the server with its IP address as the name.
How It Works
The underlying code simply injects into the addAndClose()
method inside the AddServerScreen
class to check whether the server name equals "Minecraft Server"
(the default server name), and if so sets the name to the address
private void addAndClose(CallbackInfo ci) {
if (server.name.equals("Minecraft Server")) {
server.name = server.address;
}
}
(the server variable comes from a @Shadow
)
Note
The mod should work on all versions, if it doesn't please report it on the issues page!