(trigger meta update)
This commit is contained in:
parent
3f53df3f83
commit
ce2406f671
|
@ -7,7 +7,7 @@ plugins {
|
|||
}
|
||||
|
||||
group = "dev.frogmc"
|
||||
version = "0.0.1-alpha.31"
|
||||
version = "0.0.1-alpha.32"
|
||||
|
||||
repositories {
|
||||
maven {
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -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) {
|
||||
|
|
Loading…
Reference in a new issue