Skip to content

Commit

Permalink
Merge branch 'mc-1.20.x' into mc-1.21.x
Browse files Browse the repository at this point in the history
  • Loading branch information
SquidDev committed Nov 23, 2024
2 parents 5eb50ec + 1963e01 commit b7396f3
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 9 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ neogradle.subsystems.conventions.runs.enabled=false

# Mod properties
isUnstable=true
modVersion=1.114.1
modVersion=1.114.2

# Minecraft properties: We want to configure this here so we can read it in settings.gradle
mcVersion=1.21.1
Original file line number Diff line number Diff line change
Expand Up @@ -217,9 +217,9 @@ private static void renderTerminal(
foregroundBuffer.drawWithShader(
modelView, RenderSystem.getProjectionMatrix(), RenderTypes.getTerminalShader(),
// Skip the cursor quad if it is not visible this frame.
FixedWidthFontRenderer.isCursorVisible(terminal) && FrameInfo.getGlobalCursorBlink()
? foregroundBuffer.getIndexCount()
: foregroundBuffer.getIndexCount() - RenderTypes.TERMINAL.mode().indexCount(4)
FixedWidthFontRenderer.isCursorVisible(terminal) && !FrameInfo.getGlobalCursorBlink()
? foregroundBuffer.getIndexCount() - RenderTypes.TERMINAL.mode().indexCount(4)
: foregroundBuffer.getIndexCount()
);

// Clear state
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# New features in CC: Tweaked 1.114.2

One bug fix:
* Fix OpenGL errors when rendering empty monitors.

# New features in CC: Tweaked 1.114.1

Several bug fixes:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
New features in CC: Tweaked 1.114.1
New features in CC: Tweaked 1.114.2

Several bug fixes:
* Fix monitor touch events only firing from one monitor.
* Fix crash when lectern has no item.
* Fix cursor not blinking on monitors.
One bug fix:
* Fix OpenGL errors when rendering empty monitors.

Type "help changelog" to see the full version history.

0 comments on commit b7396f3

Please sign in to comment.