From 50819c30da8e6e706f1d057dda4a81bba4d4e6d1 Mon Sep 17 00:00:00 2001 From: James Seibel Date: Fri, 11 Feb 2022 22:07:23 -0600 Subject: [PATCH] Update the version number to 1.6.1a-pre and re-enable dev code --- src/main/java/com/seibel/lod/core/ModInfo.java | 2 +- src/main/java/com/seibel/lod/core/api/ClientApi.java | 7 +------ 2 files changed, 2 insertions(+), 7 deletions(-) diff --git a/src/main/java/com/seibel/lod/core/ModInfo.java b/src/main/java/com/seibel/lod/core/ModInfo.java index 2ab4c53fa..fa980c924 100644 --- a/src/main/java/com/seibel/lod/core/ModInfo.java +++ b/src/main/java/com/seibel/lod/core/ModInfo.java @@ -38,5 +38,5 @@ public final class ModInfo /** Human readable version of NAME */ public static final String READABLE_NAME = "Distant Horizons"; public static final String API = "LodAPI"; - public static final String VERSION = "1.6.0a"; + public static final String VERSION = "1.6.1a-pre"; } \ No newline at end of file diff --git a/src/main/java/com/seibel/lod/core/api/ClientApi.java b/src/main/java/com/seibel/lod/core/api/ClientApi.java index 15eb73496..80280151b 100644 --- a/src/main/java/com/seibel/lod/core/api/ClientApi.java +++ b/src/main/java/com/seibel/lod/core/api/ClientApi.java @@ -133,7 +133,7 @@ public class ClientApi public void renderLods(Mat4f mcModelViewMatrix, Mat4f mcProjectionMatrix, float partialTicks) { // comment out when creating a release - //applyConfigOverrides(); + applyConfigOverrides(); // clear any out of date objects MC.clearFrameObjectCache(); @@ -268,11 +268,6 @@ public class ClientApi MC.sendChatMessage(ModInfo.READABLE_NAME + " experimental build " + ModInfo.VERSION); MC.sendChatMessage("You are running an unsupported version of the mod!"); MC.sendChatMessage("Here be dragons!"); - MC.sendChatMessage("======================"); - MC.sendChatMessage("==== REMINDER ===="); - MC.sendChatMessage("======================"); - MC.sendChatMessage("Remember to DISABLE this in CLientApi.applyConfigOverrides()"); - MC.sendChatMessage("For the offical release!"); configOverrideReminderPrinted = true; CONFIG.client().advanced().debugging().setDebugKeybindingsEnabled(true);