diff options
author | isXander <xandersmith2008@gmail.com> | 2023-06-04 16:47:01 +0100 |
---|---|---|
committer | isXander <xandersmith2008@gmail.com> | 2023-06-04 16:47:01 +0100 |
commit | f33bd6a62fb11648fbdc8a39c0b06768dee324ad (patch) | |
tree | ebd0d3cd23044e3c095f7564d627c387aa9214f2 | |
parent | f6ea8f4ff762c711f497a213d8443d59fd6469ac (diff) | |
download | YetAnotherConfigLib-f33bd6a62fb11648fbdc8a39c0b06768dee324ad.tar.gz YetAnotherConfigLib-f33bd6a62fb11648fbdc8a39c0b06768dee324ad.tar.bz2 YetAnotherConfigLib-f33bd6a62fb11648fbdc8a39c0b06768dee324ad.zip |
Fix forge modid
-rw-r--r-- | changelogs/3.0.0-beta.7+1.20.md | 2 | ||||
-rw-r--r-- | forge/src/main/java/dev/isxander/yacl/forge/YACLForgeEntrypoint.java | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/changelogs/3.0.0-beta.7+1.20.md b/changelogs/3.0.0-beta.7+1.20.md index da49ab6..b9dd8d6 100644 --- a/changelogs/3.0.0-beta.7+1.20.md +++ b/changelogs/3.0.0-beta.7+1.20.md @@ -2,5 +2,5 @@ This version adds no features, nor bug fixes, instead it implements a breaking change: -**The YACL package has changed** to `dev.isxander.yacl3` and **the YACL mod-id has changed** to `yet_another_config_lib_3`. +**The YACL package has changed** to `dev.isxander.yacl3` and **the YACL mod-id has changed** to `yet_another_config_lib_v3`. This is to prevent conflicts with 2.0, so you can load both versions at the same time so older mods don't break. diff --git a/forge/src/main/java/dev/isxander/yacl/forge/YACLForgeEntrypoint.java b/forge/src/main/java/dev/isxander/yacl/forge/YACLForgeEntrypoint.java index 7c491e1..52840d5 100644 --- a/forge/src/main/java/dev/isxander/yacl/forge/YACLForgeEntrypoint.java +++ b/forge/src/main/java/dev/isxander/yacl/forge/YACLForgeEntrypoint.java @@ -2,7 +2,7 @@ package dev.isxander.yacl3.forge; import net.minecraftforge.fml.common.Mod; -@Mod("yet_another_config_lib") +@Mod("yet_another_config_lib_v3") public class YACLForgeEntrypoint { public YACLForgeEntrypoint() { |