Skip to content

Commit 7f9ffc9

Browse files
committed
Fix crash on startup
1 parent 375bad3 commit 7f9ffc9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@ org.gradle.jvmargs=-Xmx1G
1111
spasm_version=0.2
1212

1313
# Mod Properties
14-
mod_version = 1.27.0
14+
mod_version = 1.27.1
1515
maven_group = io.github.fabriccompatibilitylayers
1616
archives_base_name = mod-remapping-api

src/main/java/io/github/fabriccompatibilitylayers/modremappingapi/impl/remapper/minecraft/MinecraftRemapper.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ public static void addMinecraftJar(TinyRemapper remapper, MappingsRegistry mappi
9696
}
9797

9898
for (var path : classPath) {
99-
Constants.MAIN_LOGGER.debug("Appending '{}' to remapper classpath", path);
99+
Constants.MAIN_LOGGER.debug("Appending '%s' to remapper classpath", path);
100100
remapper.readClassPathAsync(path);
101101
}
102102
}

0 commit comments

Comments
 (0)