File tree Expand file tree Collapse file tree 3 files changed +12
-1
lines changed
core/bukkit-core/src/main/java/kr/toxicity/model/bukkit Expand file tree Collapse file tree 3 files changed +12
-1
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,9 @@ public static final TrackerAnimation<EntityTracker> DEATH = TrackerAnimation.bui
1212 .build();
1313```
1414
15+ ## 🔧 Fixes
16+ - Molang support in Spigot platform
17+
1518## 🚀 Changes
1619- config ` pack.use-obfuscation ` is now true by default
1720
Original file line number Diff line number Diff line change @@ -109,6 +109,11 @@ public final class BetterModelLibrary {
109109 )
110110 .predicate (BooleanConstantSupplier .of (!BetterModelBukkit .IS_PAPER ))
111111 );
112+ public static final LibraryData ASM_TREE = register (
113+ "org{}ow2{}asm" ,
114+ "asm-tree" ,
115+ builder -> builder .predicate (BooleanConstantSupplier .of (!BetterModelBukkit .IS_PAPER ))
116+ );
112117
113118 public void load (@ NotNull AbstractBetterModelPlugin plugin ) {
114119 var manager = new BetterModelLibraryManager (plugin );
Original file line number Diff line number Diff line change @@ -28,6 +28,8 @@ adventure-option = "net.kyori:option:1.1.0"
2828adventure-platform-bukkit = " net.kyori:adventure-platform-bukkit:4.4.1"
2929adventure-platform-fabric = " net.kyori:adventure-platform-fabric:6.8.0"
3030
31+ asm-tree = " org.ow2.asm:asm-tree:9.9.1"
32+
3133fabric-loader = " net.fabricmc:fabric-loader:0.18.4"
3234fabric-language-kotlin = { module = " net.fabricmc:fabric-language-kotlin" , version.ref = " fabric-language-kotlin" }
3335
@@ -105,7 +107,8 @@ manifestLibrary = [
105107 " adventure-api" ,
106108 " adventure-examination" ,
107109 " adventure-option" ,
108- " adventure-platform-bukkit"
110+ " adventure-platform-bukkit" ,
111+ " asm-tree"
109112]
110113
111114shadedLibrary = [
You can’t perform that action at this time.
0 commit comments