From ab0290077530706d5f000987ef067906372272df Mon Sep 17 00:00:00 2001 From: mDiyo Date: Thu, 19 Dec 2013 13:36:38 -0800 Subject: [PATCH] Wood nerf notes --- src/main/java/tconstruct/util/EnvironmentChecks.java | 3 ++- src/main/java/tconstruct/util/EnvironmentGui.java | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/src/main/java/tconstruct/util/EnvironmentChecks.java b/src/main/java/tconstruct/util/EnvironmentChecks.java index c9f9e3af990..4c713e4fa85 100644 --- a/src/main/java/tconstruct/util/EnvironmentChecks.java +++ b/src/main/java/tconstruct/util/EnvironmentChecks.java @@ -67,7 +67,8 @@ public static String modCompatDetails (String type, boolean consoleFormat) if (type.equals("GregTech")) { return "- GregTech is a meta-mod that changes how a lot of mods interact with the base game and with each other." + n - + "- The mod makes broad assumptions and changes to how the ore dictionary works"; + + "- The mod restructures the registration of various ores within the Ore Dictionary. This may alter or break the original design intention of various other mods." + n + + "- This mod alters various fundamental recipes from vanilla Minecraft."; } return ""; } diff --git a/src/main/java/tconstruct/util/EnvironmentGui.java b/src/main/java/tconstruct/util/EnvironmentGui.java index 7b881eb2a28..f790437fbf0 100644 --- a/src/main/java/tconstruct/util/EnvironmentGui.java +++ b/src/main/java/tconstruct/util/EnvironmentGui.java @@ -80,7 +80,8 @@ public void drawScreen (int par1, int par2, float par3) this.drawCenteredString(this.fontRenderer, I18n.getString("The following reasons are given:"), this.width / 2, 32, 0xFFFFFF); fontRenderer.drawSplitString(I18n.getString(EnvironmentChecks.modCompatDetails(mod, false)), 20, 52, 400, 0xffffff); - this.drawCenteredString(this.fontRenderer, I18n.getString("The Tinkers' Construct team will not accept bug reports with this mod installed."), this.width / 2, 165, 0xFFFFFF); + this.drawCenteredString(this.fontRenderer, I18n.getString("The Tinkers' Construct team will not accept bug reports with this mod installed."), this.width / 2, 153, 0xFFFFFF); + this.drawCenteredString(this.fontRenderer, I18n.getString("We apologize for any inconvenience this may cause you."), this.width / 2, 165, 0xFFFFFF); super.drawScreen(par1, par2, par3); } }