Skip to content

Commit 067a269

Browse files
committed
Fix neoforge build
1 parent 027eea7 commit 067a269

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ _LithiumVersion_ is automatically replaced with the lithium version, e.g. 0.14.5
44
Everything above the line is ignored and not included in the changelog. Everything below will be in the
55
changelog on GitHub, Modrinth and CurseForge.
66
----------
7-
Lithium _LithiumVersion_ is the first release for Minecraft _MCVersion_.
7+
Lithium _LithiumVersion_ for Minecraft _MCVersion_ fixes a startup issue.
88

99
Make sure to take a backup of your world before using the mod and please report any bugs and mod compatibility issues at the [issue tracker](https://github.com/CaffeineMC/lithium-fabric/issues). You can check the [description of each optimization](https://github.com/CaffeineMC/lithium/blob/_ReleaseTag_/lithium-mixin-config.md) and how to disable it when encountering a problem.
1010

1111
It is highly recommended to update from the previous release.
1212

1313
## Fixes
14-
- Crash with experimental client brain optimization
14+
- Neoforge jar missing common classes

build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@ plugins {
88
// Fabric: https://fabricmc.net/develop/
99
// Neoforge: https://neoforged.net/
1010
val MINECRAFT_VERSION by extra { "26.1.2" } //MUST manually update fabric.mod.json and neoforge.mods.toml
11-
val NEOFORGE_VERSION by extra { "26.1.1.0-beta" }
11+
val NEOFORGE_VERSION by extra { "26.1.2.2-beta" }
1212
val FABRIC_LOADER_VERSION by extra { "0.18.6" }
1313
val FABRIC_API_VERSION by extra { "0.145.4+26.1.2" }
1414

1515
// This value can be set to null to disable Parchment.
1616
val PARCHMENT_VERSION by extra { null }
1717

1818
// https://semver.org/
19-
val MOD_VERSION by extra { "0.24.0" }
19+
val MOD_VERSION by extra { "0.24.1" }
2020

2121
allprojects {
2222
apply(plugin = "java")

neoforge/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ tasks.jar {
6666
from(api.output.resourcesDir)
6767

6868
val main = project.project(":common").sourceSets.getByName("main")
69-
69+
from(main.output.classesDirs)
7070
from(main.output.resourcesDir)
7171

7272
from(rootDir.resolve("LICENSE.md"))

0 commit comments

Comments
 (0)