Skip to content
This repository was archived by the owner on Mar 24, 2025. It is now read-only.

Commit 918f045

Browse files
committed
Fix mapwriter and possibly other mods.
1 parent be60ebb commit 918f045

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ ext {
77
forge = rootProject.project(':forge')
88
macros = rootProject.project(':macros')
99

10-
rev = '15'
10+
rev = '16'
1111

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

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

src/main/java/mnm/mods/tabbychat/core/GuiNewChatTC.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,10 +48,10 @@ public void drawChat(int i) {
4848
float scale = chatbox.getScale();
4949

5050
GlStateManager.popMatrix(); // ignore what GuiIngame did.
51+
GlStateManager.pushMatrix();
5152
// translate to above the itemrenderer
5253
// before push so it effects the tab list too.
53-
GlStateManager.translate(0, 0, 150.5);
54-
GlStateManager.pushMatrix();
54+
GlStateManager.translate(0, 0, 151);
5555

5656
// Scale it accordingly
5757
GlStateManager.scale(scale, scale, 1.0F);

0 commit comments

Comments
 (0)