Skip to content

Commit f630148

Browse files
committed
Bump to 1.2.1; fix Capes mod compatibiltiy
1 parent 463adf7 commit f630148

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ org.gradle.jvmargs=-Xmx1G
55
minecraft_version=1.18
66
loader_version=0.12.6
77
# Mod Properties
8-
mod_version=1.2
8+
mod_version=1.2.1
99
maven_group=net.camotoy
1010
archives_base_name=BedrockSkinUtility
1111
# Dependencies

src/main/java/net/camotoy/bedrockskinutility/client/MixinConfigPlugin.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ public String getRefMapperConfig() {
2323

2424
@Override
2525
public boolean shouldApplyMixin(String targetClassName, String mixinClassName) {
26-
if (mixinClassName.equals("com.github.camotoy.bedrockskinutility.client.mixin.CapeFeatureRendererMixin")) {
26+
if (mixinClassName.equals("net.camotoy.bedrockskinutility.client.mixin.CapeFeatureRendererMixin")) {
2727
boolean capes = FabricLoader.getInstance().getModContainer("capes").isPresent();
2828
if (capes) {
2929
// the Capes mod has a Mixin that just sets all capes to transparent, so we don't need this Mixin

0 commit comments

Comments
 (0)