Skip to content

Commit

Permalink
bump shadow version
Browse files Browse the repository at this point in the history
  • Loading branch information
tasgon committed Aug 31, 2024
1 parent 379d9ca commit b749b95
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion fabric/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id "com.github.johnrengelman.shadow" version "7.1.1"
id "com.github.johnrengelman.shadow" version "8.1.1"
id 'org.jetbrains.kotlin.jvm'
id "me.shedaniel.unified-publishing"
}
Expand Down
3 changes: 2 additions & 1 deletion fabric/src/main/kotlin/observable/fabric/Client.kt
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ class Client : ClientModInitializer {

WorldRenderEvents.END.register {
val stack = it.matrixStack() ?: return@register
Overlay.render(stack, it.tickCounter().getGameTimeDeltaPartialTick(true), it.projectionMatrix())
val projection = it.projectionMatrix()
Overlay.render(stack, it.tickCounter().getGameTimeDeltaPartialTick(true), projection)
}
}
}
2 changes: 1 addition & 1 deletion forge/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id "com.github.johnrengelman.shadow" version "7.1.1"
id "com.github.johnrengelman.shadow" version "8.1.1"
id 'org.jetbrains.kotlin.jvm'
id "me.shedaniel.unified-publishing"
}
Expand Down

0 comments on commit b749b95

Please sign in to comment.