diff --git a/core/src/main/java/com/seibel/distanthorizons/core/multiplayer/client/ClientNetworkState.java b/core/src/main/java/com/seibel/distanthorizons/core/multiplayer/client/ClientNetworkState.java index 622f3b3ce..5cb6c5b85 100644 --- a/core/src/main/java/com/seibel/distanthorizons/core/multiplayer/client/ClientNetworkState.java +++ b/core/src/main/java/com/seibel/distanthorizons/core/multiplayer/client/ClientNetworkState.java @@ -95,6 +95,15 @@ public class ClientNetworkState implements Closeable || Math.abs(event.protocolVersion - ModInfo.PROTOCOL_VERSION) < this.closestProtocolVersion) { this.closestProtocolVersion = event.protocolVersion; + + if (ModInfo.PROTOCOL_VERSION < event.protocolVersion) + { + LOGGER.warn("Your mod is outdated. Update to receive LODs on this server."); + } + else + { + LOGGER.warn("The server's mod is outdated. Ask the server's owner to update."); + } } });