Skip to content

Commit

Permalink
fix neoforge version bs
Browse files Browse the repository at this point in the history
  • Loading branch information
tasgon committed Sep 16, 2024
1 parent 460ff55 commit f5f0fe0
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
"screen.observable.client_settings": "Settings",
"text.observable.maxBlockDist": "Max block label distance (blocks):",
"text.observable.maxEntityDist": "Max entity label distance (blocks):",
"text.observable.minRate": "Minimum rate to visualize (μs/t):",
"text.observable.normalize": "Normalize results:",
"text.observable.maxEntityCount": "Max # of entities:",
"text.observable.cmd": "Observable is a server-side entity profiler that can help you figure out what's lagging your server. To learn more, go to %s."
Expand Down
4 changes: 2 additions & 2 deletions forge/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ dependencies {
shadowCommon(project(path: ":common", configuration: "transformProductionNeoForge")) {
transitive = false
}
shadowCommon("org.jetbrains.kotlinx:kotlinx-serialization-protobuf-jvm:1.3.1") {
shadowCommon("org.jetbrains.kotlinx:kotlinx-serialization-protobuf-jvm:$kotlin_serialization_version") {
transitive = false
}

Expand All @@ -39,7 +39,7 @@ dependencies {
processResources {
inputs.property "version", project.version

filesMatching("META-INF/mods.toml") {
filesMatching("META-INF/neoforge.mods.toml") {
expand "version": project.version
}
}
Expand Down
2 changes: 1 addition & 1 deletion forge/src/main/resources/META-INF/neoforge.mods.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ license = "MPL"

[[mods]]
modId = "observable"
version = "4.5.1"
version = "${version}"
displayName = "Observable"
description = '''
See what's lagging your world.
Expand Down

0 comments on commit f5f0fe0

Please sign in to comment.