Mirror von
https://github.com/GeyserMC/Geyser.git
synchronisiert 2024-11-19 14:30:17 +01:00
Logger message for direct-compression still being enabled
Dieser Commit ist enthalten in:
Ursprung
bfd032d685
Commit
fc10ec265f
@ -405,6 +405,8 @@ public class GeyserImpl implements GeyserApi, EventRegistrar {
|
|||||||
logger.debug("Found SRV record \"" + remoteAddress + ":" + remotePort + "\"");
|
logger.debug("Found SRV record \"" + remoteAddress + ":" + remotePort + "\"");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
} else if (!config.advanced().useDirectConnection()) {
|
||||||
|
logger.warning("The use-direct-connection config option is deprecated. Please reach out to us on Discord if there's a reason it needs to be enabled.");
|
||||||
}
|
}
|
||||||
|
|
||||||
// Ensure that PacketLib does not create an event loop for handling packets; we'll do that ourselves
|
// Ensure that PacketLib does not create an event loop for handling packets; we'll do that ourselves
|
||||||
|
@ -209,7 +209,7 @@ public final class ConfigLoader {
|
|||||||
|
|
||||||
// Create the path in a way that Standalone changing the config name will be fine.
|
// Create the path in a way that Standalone changing the config name will be fine.
|
||||||
int extensionIndex = configFile.getName().lastIndexOf(".");
|
int extensionIndex = configFile.getName().lastIndexOf(".");
|
||||||
File advancedConfigPath = new File(configFile.getParent(), configFile.getName().substring(0, extensionIndex) + "_advanced" + configFile.getName().substring(extensionIndex));
|
File advancedConfigPath = new File(configFile.getParent(), configFile.getName().substring(0, extensionIndex) + "-advanced" + configFile.getName().substring(extensionIndex));
|
||||||
AdvancedConfig advancedConfig = null;
|
AdvancedConfig advancedConfig = null;
|
||||||
|
|
||||||
if (originallyEmpty || currentVersion != newVersion) {
|
if (originallyEmpty || currentVersion != newVersion) {
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren