Skip to content

Commit

Permalink
Wood nerf notes
Browse files Browse the repository at this point in the history
  • Loading branch information
mDiyo committed Dec 19, 2013
1 parent 1ddf963 commit ab02900
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/main/java/tconstruct/util/EnvironmentChecks.java
Expand Up @@ -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 "";
}
Expand Down
3 changes: 2 additions & 1 deletion src/main/java/tconstruct/util/EnvironmentGui.java
Expand Up @@ -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);
}
}

0 comments on commit ab02900

Please sign in to comment.