From 3cf0c724f40c88ede8c824d0e6b60dbb934fe792 Mon Sep 17 00:00:00 2001 From: coolGi Date: Fri, 12 May 2023 20:45:40 +0930 Subject: [PATCH] Added a fixme comment --- .../seibel/lod/common/wrappers/world/ClientLevelWrapper.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/common/src/main/java/com/seibel/lod/common/wrappers/world/ClientLevelWrapper.java b/common/src/main/java/com/seibel/lod/common/wrappers/world/ClientLevelWrapper.java index 8093cfb1e..6bf54115d 100644 --- a/common/src/main/java/com/seibel/lod/common/wrappers/world/ClientLevelWrapper.java +++ b/common/src/main/java/com/seibel/lod/common/wrappers/world/ClientLevelWrapper.java @@ -73,6 +73,8 @@ public class ClientLevelWrapper implements IClientLevelWrapper ServerLevelWrapper foundLevelWrapper = null; for (ServerLevel serverLevel : serverLevels) { + // FIXME: This check is incorrect, even if there are more not "More than 1 level exists for a given dimension", it would still say it is + // This happens when both the overworld and end gets passed if (foundLevelWrapper != null) { LOGGER.warn("More than 1 level exists for a given dimension. Defaulting to the first level.");