Skip to content

Commit

Permalink
Fix mapwriter and possibly other mods.
Browse files Browse the repository at this point in the history
  • Loading branch information
mattmess1221 committed Mar 15, 2016
1 parent be60ebb commit 918f045
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ ext {
forge = rootProject.project(':forge')
macros = rootProject.project(':macros')

rev = '15'
rev = '16'

}
def buildServer = System.env.BUILD_ID != null
Expand All @@ -16,7 +16,7 @@ group = 'mnm.mods'
archivesBaseName = 'TabbyChat'
//version = "2.0-beta-SNAPSHOT.${System.env.BUILD_ID}"
//if (buildServer) version += ".${System.env.GIT_COMMIT?.substring(0,6)}"
version = '2.0'
version = '2.0.1'

apply from: utils.file('gradle/minecraft.gradle')

Expand Down
4 changes: 2 additions & 2 deletions src/main/java/mnm/mods/tabbychat/core/GuiNewChatTC.java
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,10 @@ public void drawChat(int i) {
float scale = chatbox.getScale();

GlStateManager.popMatrix(); // ignore what GuiIngame did.
GlStateManager.pushMatrix();
// translate to above the itemrenderer
// before push so it effects the tab list too.
GlStateManager.translate(0, 0, 150.5);
GlStateManager.pushMatrix();
GlStateManager.translate(0, 0, 151);

// Scale it accordingly
GlStateManager.scale(scale, scale, 1.0F);
Expand Down

0 comments on commit 918f045

Please sign in to comment.