bump version
Some checks failed
Publish to snapshot maven / build (push) Failing after 53s

(trigger meta update)
This commit is contained in:
moehreag 2024-10-02 16:48:58 +02:00
parent 3f53df3f83
commit ce2406f671
3 changed files with 5 additions and 5 deletions

View file

@ -7,7 +7,7 @@ plugins {
}
group = "dev.frogmc"
version = "0.0.1-alpha.31"
version = "0.0.1-alpha.32"
repositories {
maven {

View file

@ -1,6 +1,6 @@
[versions]
thyroxine = "0.0.1-alpha.15"
thyroxine = "0.0.1-alpha.18"
nightconfig = "3.8.1"
mixin = "0.15.0+mixin.0.8.7"
annotations = "24.1.0"

View file

@ -138,7 +138,7 @@ public class MinecraftGamePlugin implements GamePlugin {
String mappingPath = System.getProperty(SystemProperties.INTERMEDIARY_MAPPINGS);
try {
if (mappingPath != null) {
mappings = readIntemediaryMappings(mappingPath);
mappings = readIntermediaryMappings(mappingPath);
} else {
try {
mappings = MojmapProvider.get(version, remappedGamePath.resolveSibling("client-" + version + ".txt"))
@ -159,7 +159,7 @@ public class MinecraftGamePlugin implements GamePlugin {
}
}
if (mappings == null) {
mappings = readIntemediaryMappings("/mappings/mappings.tiny");
mappings = readIntermediaryMappings("/mappings/mappings.tiny");
}
if (mappings != null) {
Thyroxine.remap(mappings, gamePath, remappedGamePath, true, false);
@ -177,7 +177,7 @@ public class MinecraftGamePlugin implements GamePlugin {
FrogLoaderImpl.getInstance().getClassloader().addURL(runtimePath.toUri().toURL());
}
private MappingData readIntemediaryMappings(String path) throws IOException {
private MappingData readIntermediaryMappings(String path) throws IOException {
URL resource = this.getClass().getResource(path);
String data;
if (resource != null) {