Описание

Yeet the laggy reversed DNS lookup for literal IP server addresses
Extracted from the `yeetServerIpReversedDnsLookup` option in [TweakerMore](https://modrinth.com/mod/tweakermore) Mod
### What & Why & How
For servers whose addresses are represented solely by a literal IP, e.g. `192.168.2.10:25565`, disable reverse DNS lookups in the corresponding `InetAddress` object
Many non-loopback IPs lack associated domain names, which makes reverse lookups time-consuming
```java
// java.net.InetAddress#getHostName(boolean)
String getHostName(boolean check) {
if (holder().getHostName() == null) { // It will be null if InetAddress.getByName() received a literal IP
holder().hostName = InetAddress.getHostFromNameService(this, check); //