This repository was archived by the owner on Mar 24, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
src/main/java/mnm/mods/tabbychat/core Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 7
7
forge = rootProject. project(' :forge' )
8
8
macros = rootProject. project(' :macros' )
9
9
10
- rev = ' 15 '
10
+ rev = ' 16 '
11
11
12
12
}
13
13
def buildServer = System . env. BUILD_ID != null
@@ -16,7 +16,7 @@ group = 'mnm.mods'
16
16
archivesBaseName = ' TabbyChat'
17
17
// version = "2.0-beta-SNAPSHOT.${System.env.BUILD_ID}"
18
18
// if (buildServer) version += ".${System.env.GIT_COMMIT?.substring(0,6)}"
19
- version = ' 2.0'
19
+ version = ' 2.0.1 '
20
20
21
21
apply from : utils. file(' gradle/minecraft.gradle' )
22
22
Original file line number Diff line number Diff line change @@ -48,10 +48,10 @@ public void drawChat(int i) {
48
48
float scale = chatbox .getScale ();
49
49
50
50
GlStateManager .popMatrix (); // ignore what GuiIngame did.
51
+ GlStateManager .pushMatrix ();
51
52
// translate to above the itemrenderer
52
53
// 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 );
55
55
56
56
// Scale it accordingly
57
57
GlStateManager .scale (scale , scale , 1.0F );
You can’t perform that action at this time.
0 commit comments