diff --git a/common/src/main/java/com/seibel/distanthorizons/common/wrappers/WrapperFactory.java b/common/src/main/java/com/seibel/distanthorizons/common/wrappers/WrapperFactory.java index ce789634a..2ef8041ab 100644 --- a/common/src/main/java/com/seibel/distanthorizons/common/wrappers/WrapperFactory.java +++ b/common/src/main/java/com/seibel/distanthorizons/common/wrappers/WrapperFactory.java @@ -103,7 +103,7 @@ public class WrapperFactory implements IWrapperFactory @Override public IBiomeWrapper deserializeBiomeWrapper(String str, ILevelWrapper levelWrapper) throws IOException { return BiomeWrapper.deserialize(str, levelWrapper); } @Override - public IBiomeWrapper getPlainsBiomeWrapper(ILevelWrapper levelWrapper) // TODO is there a way we could get this without the levelWrapper? it isn't necessary but would clean up the code a bit + public IBiomeWrapper getPlainsBiomeWrapper(ILevelWrapper levelWrapper) { try { diff --git a/common/src/main/java/com/seibel/distanthorizons/common/wrappers/gui/TexturedButtonWidget.java b/common/src/main/java/com/seibel/distanthorizons/common/wrappers/gui/TexturedButtonWidget.java index 9d2e965dd..a00e5b4ad 100644 --- a/common/src/main/java/com/seibel/distanthorizons/common/wrappers/gui/TexturedButtonWidget.java +++ b/common/src/main/java/com/seibel/distanthorizons/common/wrappers/gui/TexturedButtonWidget.java @@ -106,8 +106,7 @@ public class TexturedButtonWidget extends Button #if MC_VER < MC_1_20_2 super(x, y, width, height, u, v, hoveredVOffset, textureResourceLocation, textureWidth, textureHeight, pressAction, text); #else - // We don't pass on the text option as otherwise it will render (we normally pass it for narration) - // TODO: Find a fix for it + // We don't pass in the text option since it will render (we normally pass it in for narration) super(x, y, width, height, Component.empty(), pressAction, DEFAULT_NARRATION); this.u = u; diff --git a/common/src/main/java/com/seibel/distanthorizons/common/wrappers/gui/updater/UpdateModScreen.java b/common/src/main/java/com/seibel/distanthorizons/common/wrappers/gui/updater/UpdateModScreen.java index 339288d6b..54b63145a 100644 --- a/common/src/main/java/com/seibel/distanthorizons/common/wrappers/gui/updater/UpdateModScreen.java +++ b/common/src/main/java/com/seibel/distanthorizons/common/wrappers/gui/updater/UpdateModScreen.java @@ -34,8 +34,6 @@ import java.util.*; * * @author coolGi */ -// TODO: After finishing the config, rewrite this in Java Swing as well -// and also maybe add this suggestion https://discord.com/channels/881614130614767666/1035863487110467625/1035949054485594192 public class UpdateModScreen extends DhScreen { private static final DhLogger LOGGER = new DhLoggerBuilder().build(); @@ -105,7 +103,7 @@ public class UpdateModScreen extends DhScreen 195, 65, // Create the button and tell it where to go // For now it goes to the client option by default - (buttonWidget) -> System.out.println("Nice, you found an easter egg :)"), // TODO: Add a proper easter egg to pressing the logo (maybe with confetti) + (buttonWidget) -> LOGGER.info("Nice, you found an Easter egg :)"), // Add a title to the button Translatable(ModInfo.ID + ".updater.title"), // Dont render the background of the button diff --git a/coreSubProjects b/coreSubProjects index c30e41013..a9bfc3fbe 160000 --- a/coreSubProjects +++ b/coreSubProjects @@ -1 +1 @@ -Subproject commit c30e410132f752c234531f141e9a33cfd4d5e8f4 +Subproject commit a9bfc3fbe196cfb2ec11e3e2489b1c43b1686b56