update dependencies
All checks were successful
Publish to snapshot maven / build (push) Successful in 24s
All checks were successful
Publish to snapshot maven / build (push) Successful in 24s
This commit is contained in:
parent
0a602a5012
commit
400b892014
|
@ -7,7 +7,7 @@ plugins {
|
||||||
}
|
}
|
||||||
|
|
||||||
group = "dev.frogmc"
|
group = "dev.frogmc"
|
||||||
version = "0.0.1-alpha.22"
|
version = "0.0.1-alpha.23"
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
maven {
|
maven {
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[versions]
|
[versions]
|
||||||
|
|
||||||
thyroxine = "0.0.1-alpha.11"
|
thyroxine = "0.0.1-alpha.12"
|
||||||
nightconfig = "3.7.3"
|
nightconfig = "3.7.3"
|
||||||
mixin = "0.15.0+mixin.0.8.7"
|
mixin = "0.15.0+mixin.0.8.7"
|
||||||
annotations = "24.1.0"
|
annotations = "24.1.0"
|
||||||
|
|
|
@ -1,18 +1,6 @@
|
||||||
plugins {
|
plugins {
|
||||||
java
|
java
|
||||||
id("dev.frogmc.phytotelma") version "0.0.1-alpha.15"
|
id("dev.frogmc.phytotelma") version "0.0.1-alpha.18"
|
||||||
}
|
|
||||||
|
|
||||||
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()
|
|
||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
|
|
|
@ -138,7 +138,7 @@ public class MinecraftGamePlugin implements GamePlugin {
|
||||||
mappings = MojmapProvider.get(version, remappedGamePath.resolveSibling("client-" + version + ".txt")).orElse(null);
|
mappings = MojmapProvider.get(version, remappedGamePath.resolveSibling("client-" + version + ".txt")).orElse(null);
|
||||||
}
|
}
|
||||||
if (mappings == null) {
|
if (mappings == null) {
|
||||||
mappings = readIntemediaryMappings("mappings/mappings.tiny");
|
mappings = readIntemediaryMappings("/mappings/mappings.tiny");
|
||||||
}
|
}
|
||||||
if (mappings != null) {
|
if (mappings != null) {
|
||||||
Thyroxine.remap(mappings.flattenData(), gamePath, remappedGamePath, true, false);
|
Thyroxine.remap(mappings.flattenData(), gamePath, remappedGamePath, true, false);
|
||||||
|
|
Loading…
Reference in a new issue