mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2025-06-26 10:44:43 +02:00
Updated for 1.21.6
This commit is contained in:
@ -1,3 +1,8 @@
|
|||||||
|
Version 2.2.040
|
||||||
|
(Codebase) Updated Adventure Libs
|
||||||
|
Added 'Happy_Ghast' to experience.yml for combat XP
|
||||||
|
Added 'Ghastling' to experience.yml for combat XP
|
||||||
|
|
||||||
Version 2.2.039
|
Version 2.2.039
|
||||||
Added StackOverflow safeguards for abilities dealing damage in mcMMO
|
Added StackOverflow safeguards for abilities dealing damage in mcMMO
|
||||||
Improved compatibility with MythicMobs/ModelEngine
|
Improved compatibility with MythicMobs/ModelEngine
|
||||||
|
33
pom.xml
33
pom.xml
@ -14,8 +14,10 @@
|
|||||||
|
|
||||||
<properties>
|
<properties>
|
||||||
<!-- <spigot.version>1.19-R0.1-SNAPSHOT</spigot.version>-->
|
<!-- <spigot.version>1.19-R0.1-SNAPSHOT</spigot.version>-->
|
||||||
<spigot.version>1.21.5-R0.1-SNAPSHOT</spigot.version>
|
<spigot.version>1.21.6-R0.1-SNAPSHOT</spigot.version>
|
||||||
<adventure.version>4.3.5-SNAPSHOT</adventure.version>
|
<kyori.adventure.version>4.23.0</kyori.adventure.version>
|
||||||
|
<kyori.adventure.platform.version>4.4.1-SNAPSHOT</kyori.adventure.platform.version>
|
||||||
|
<kyori.option.version>1.1.0</kyori.option.version>
|
||||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||||
<maven.compiler.source>17</maven.compiler.source>
|
<maven.compiler.source>17</maven.compiler.source>
|
||||||
<maven.compiler.target>17</maven.compiler.target>
|
<maven.compiler.target>17</maven.compiler.target>
|
||||||
@ -161,6 +163,7 @@
|
|||||||
<include>net.kyori:adventure-platform-facet</include>
|
<include>net.kyori:adventure-platform-facet</include>
|
||||||
<include>net.kyori:adventure-platform-viaversion</include>
|
<include>net.kyori:adventure-platform-viaversion</include>
|
||||||
<include>net.kyori:adventure-text-serializer-bungeecord</include>
|
<include>net.kyori:adventure-text-serializer-bungeecord</include>
|
||||||
|
<include>net.kyori:adventure-text-serializer-commons</include>
|
||||||
<include>net.kyori:adventure-text-serializer-gson</include>
|
<include>net.kyori:adventure-text-serializer-gson</include>
|
||||||
<include>net.kyori:adventure-text-serializer-gson-legacy-impl</include>
|
<include>net.kyori:adventure-text-serializer-gson-legacy-impl</include>
|
||||||
<include>net.kyori:adventure-text-serializer-json</include>
|
<include>net.kyori:adventure-text-serializer-json</include>
|
||||||
@ -316,67 +319,67 @@
|
|||||||
<dependency>
|
<dependency>
|
||||||
<groupId>net.kyori</groupId>
|
<groupId>net.kyori</groupId>
|
||||||
<artifactId>adventure-text-serializer-bungeecord</artifactId>
|
<artifactId>adventure-text-serializer-bungeecord</artifactId>
|
||||||
<version>${adventure.version}</version>
|
<version>${kyori.adventure.platform.version}</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>net.kyori</groupId>
|
<groupId>net.kyori</groupId>
|
||||||
<artifactId>adventure-text-serializer-gson</artifactId>
|
<artifactId>adventure-text-serializer-gson</artifactId>
|
||||||
<version>4.19.0</version>
|
<version>${kyori.adventure.version}</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>net.kyori</groupId>
|
<groupId>net.kyori</groupId>
|
||||||
<artifactId>adventure-text-serializer-gson-legacy-impl</artifactId>
|
<artifactId>adventure-text-serializer-gson-legacy-impl</artifactId>
|
||||||
<version>4.19.0</version>
|
<version>${kyori.adventure.version}</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>net.kyori</groupId>
|
<groupId>net.kyori</groupId>
|
||||||
<artifactId>adventure-text-serializer-json</artifactId>
|
<artifactId>adventure-text-serializer-json</artifactId>
|
||||||
<version>4.19.0</version>
|
<version>${kyori.adventure.version}</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>net.kyori</groupId>
|
<groupId>net.kyori</groupId>
|
||||||
<artifactId>adventure-text-serializer-json-legacy-impl</artifactId>
|
<artifactId>adventure-text-serializer-json-legacy-impl</artifactId>
|
||||||
<version>4.19.0</version>
|
<version>${kyori.adventure.version}</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>net.kyori</groupId>
|
<groupId>net.kyori</groupId>
|
||||||
<artifactId>adventure-api</artifactId>
|
<artifactId>adventure-api</artifactId>
|
||||||
<version>4.19.0</version>
|
<version>${kyori.adventure.version}</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>net.kyori</groupId>
|
<groupId>net.kyori</groupId>
|
||||||
<artifactId>adventure-nbt</artifactId>
|
<artifactId>adventure-nbt</artifactId>
|
||||||
<version>4.19.0</version>
|
<version>${kyori.adventure.version}</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>net.kyori</groupId>
|
<groupId>net.kyori</groupId>
|
||||||
<artifactId>adventure-key</artifactId>
|
<artifactId>adventure-key</artifactId>
|
||||||
<version>4.19.0</version>
|
<version>${kyori.adventure.version}</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>net.kyori</groupId>
|
<groupId>net.kyori</groupId>
|
||||||
<artifactId>adventure-platform-api</artifactId>
|
<artifactId>adventure-platform-api</artifactId>
|
||||||
<version>${adventure.version}</version>
|
<version>${kyori.adventure.platform.version}</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>net.kyori</groupId>
|
<groupId>net.kyori</groupId>
|
||||||
<artifactId>adventure-platform-bukkit</artifactId>
|
<artifactId>adventure-platform-bukkit</artifactId>
|
||||||
<version>${adventure.version}</version>
|
<version>${kyori.adventure.platform.version}</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>net.kyori</groupId>
|
<groupId>net.kyori</groupId>
|
||||||
<artifactId>adventure-platform-facet</artifactId>
|
<artifactId>adventure-platform-facet</artifactId>
|
||||||
<version>${adventure.version}</version>
|
<version>${kyori.adventure.platform.version}</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>net.kyori</groupId>
|
<groupId>net.kyori</groupId>
|
||||||
<artifactId>adventure-platform-viaversion</artifactId>
|
<artifactId>adventure-platform-viaversion</artifactId>
|
||||||
<version>${adventure.version}</version>
|
<version>${kyori.adventure.platform.version}</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>net.kyori</groupId>
|
<groupId>net.kyori</groupId>
|
||||||
<artifactId>option</artifactId>
|
<artifactId>option</artifactId>
|
||||||
<version>1.0.0</version>
|
<version>${kyori.option.version}</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.apache.maven.scm</groupId>
|
<groupId>org.apache.maven.scm</groupId>
|
||||||
|
@ -609,6 +609,8 @@ Experience_Values:
|
|||||||
Zombie: 2.0
|
Zombie: 2.0
|
||||||
Slime: 2.0
|
Slime: 2.0
|
||||||
Ghast: 3.0
|
Ghast: 3.0
|
||||||
|
Happy_Ghast: 1.0
|
||||||
|
Ghastling: 0.5
|
||||||
Pig_Zombie: 3.0
|
Pig_Zombie: 3.0
|
||||||
Enderman: 1.0
|
Enderman: 1.0
|
||||||
Cave_Spider: 3.0
|
Cave_Spider: 3.0
|
||||||
|
Reference in New Issue
Block a user