Skip to content

Commit 6dc67c8

Browse files
committed
Fixed RedCorePlugin not being able to be found by the loader
1 parent 408db90 commit 6dc67c8

3 files changed

Lines changed: 10 additions & 2 deletions

File tree

Changelog.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,14 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com),
66
and this project follows the [Ragnarök Versioning Convention](https://github.com/Red-Studio-Ragnarok/Commons/blob/main/Ragnar%C3%B6k%20Versioning%20Convention.md).
77

8+
## Red Core Version 0.7.1 Changelog - 2026-01-13
9+
10+
### Red Core MC
11+
12+
#### Fixed
13+
14+
- Fixed `RedCorePlugin` not being able to be found by the loader
15+
816
## Red Core Version 0.7 Changelog - 2025-12-29
917

1018
### Deprecated

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ subprojects {
2525
apply(plugin = "java-library")
2626

2727
group = "dev.redstudio"
28-
version = "0.7" // Versioning must follow Ragnarök versioning convention: https://github.com/Red-Studio-Ragnarok/Commons/blob/main/Ragnar%C3%B6k%20Versioning%20Convention.md
28+
version = "0.7.1" // Versioning must follow Ragnarök versioning convention: https://github.com/Red-Studio-Ragnarok/Commons/blob/main/Ragnar%C3%B6k%20Versioning%20Convention.md
2929

3030
repositories {
3131
mavenCentral()

mc/1-8---1-12/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ tasks {
5454
named<Jar>("jar") {
5555
manifest.attributes(
5656
"ModSide" to "BOTH",
57-
"FMLCorePlugin" to "${project.group}.redcore.RedCorePlugin",
57+
"FMLCorePlugin" to plugin,
5858
"FMLCorePluginContainsFMLMod" to "true",
5959
"ForceLoadAsMod" to "true",
6060
)

0 commit comments

Comments
 (0)