update dependencies
All checks were successful
Publish to snapshot maven / build (push) Successful in 24s

This commit is contained in:
moehreag 2024-08-27 18:35:05 +02:00
parent 0a602a5012
commit 400b892014
4 changed files with 4 additions and 16 deletions

View file

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

View file

@ -1,6 +1,6 @@
[versions]
thyroxine = "0.0.1-alpha.11"
thyroxine = "0.0.1-alpha.12"
nightconfig = "3.7.3"
mixin = "0.15.0+mixin.0.8.7"
annotations = "24.1.0"

View file

@ -1,18 +1,6 @@
plugins {
java
id("dev.frogmc.phytotelma") version "0.0.1-alpha.15"
}
repositories {
maven {
name = "FrogMC Maven/Snapshots"
url = uri("https://maven-frogmc.ecorous.org/snapshots")
}
maven {
name = "FrogMC Maven/Releases"
url = uri("https://maven-frogmc.ecorous.org/releases")
}
mavenCentral()
id("dev.frogmc.phytotelma") version "0.0.1-alpha.18"
}
dependencies {

View file

@ -138,7 +138,7 @@ public class MinecraftGamePlugin implements GamePlugin {
mappings = MojmapProvider.get(version, remappedGamePath.resolveSibling("client-" + version + ".txt")).orElse(null);
}
if (mappings == null) {
mappings = readIntemediaryMappings("mappings/mappings.tiny");
mappings = readIntemediaryMappings("/mappings/mappings.tiny");
}
if (mappings != null) {
Thyroxine.remap(mappings.flattenData(), gamePath, remappedGamePath, true, false);