mirror of
https://github.com/ViaVersion/Mappings.git
synced 2025-02-08 00:21:40 +01:00
Add missing particle mappings
This commit is contained in:
parent
5022385438
commit
d622980aab
@ -15,7 +15,7 @@ dependencies {
|
||||
api("ch.qos.logback:logback-classic:1.5.8")
|
||||
compileOnly("org.jetbrains:annotations:26.0.1")
|
||||
// Uncomment to manually run mappings gen in ide
|
||||
compileOnly(files("server.jar"))
|
||||
// compileOnly(files("server.jar"))
|
||||
|
||||
testImplementation("org.junit.jupiter:junit-jupiter:5.11.1")
|
||||
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
|
||||
|
@ -390,8 +390,8 @@
|
||||
"pale_hanging_moss[tip=false]": "hanging_roots[waterlogged=false]"
|
||||
},
|
||||
"particles": {
|
||||
"trail": "",
|
||||
"block_crumble": ""
|
||||
"trail": "entity_effect",
|
||||
"block_crumble": "block"
|
||||
},
|
||||
"blockentities": {
|
||||
"creaking_heart": ""
|
||||
|
BIN
mappings/extra/enchantments-1.21.nbt
Normal file
BIN
mappings/extra/enchantments-1.21.nbt
Normal file
Binary file not shown.
@ -236,7 +236,7 @@
|
||||
"size": 1732
|
||||
},
|
||||
"1.21.2:1.21": {
|
||||
"object-hash": -2005729684,
|
||||
"object-hash": -2005691965,
|
||||
"size": 6356
|
||||
}
|
||||
}
|
@ -111,15 +111,15 @@ public final class ManualRunner {
|
||||
|
||||
try {
|
||||
// Server jar bundle since 21w39a
|
||||
// Alternatively, java -DbundlerMainClass=net.minecraft.data.Main -jar server.jar --reports
|
||||
// Alternatively, java -DbundlerMainClass=net.minecraft.data.Main -jar server.jar --all
|
||||
System.setProperty("bundlerMainClass", "net.minecraft.data.Main");
|
||||
Class.forName("net.minecraft.bundler.Main").getDeclaredMethod("main", String[].class).invoke(null, (Object) new String[]{"--reports"});
|
||||
Class.forName("net.minecraft.bundler.Main").getDeclaredMethod("main", String[].class).invoke(null, (Object) new String[]{"--all"});
|
||||
ServerJarUtil.waitForServerMain();
|
||||
} catch (final ClassNotFoundException ignored) {
|
||||
final Class<?> mainClass = Class.forName("net.minecraft.data.Main");
|
||||
mainClass.getDeclaredMethod("main", String[].class).invoke(null, (Object) new String[]{"--reports"});
|
||||
}
|
||||
|
||||
MappingsGenerator.collectMappings("1.20.5");
|
||||
MappingsGenerator.collectMappings("1.21.2-pre3");
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user