mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2024-11-22 05:06:45 +01:00
Add new repair setting to default file
This commit is contained in:
parent
2ca3544741
commit
9d08d88f2a
@ -1,6 +1,8 @@
|
|||||||
Version 2.1.207
|
Version 2.1.207
|
||||||
Fixed an IndexOutOfBounds exception with our BlockTracker
|
Fixed an IndexOutOfBounds exception with our BlockTracker
|
||||||
Fixed a bug where leveling up a party at level cap would spam the chat with messages
|
Fixed a bug where leveling up a party at level cap would spam the chat with messages
|
||||||
|
mcMMO will no longer use enchanted repair materials (thanks JeBobs)
|
||||||
|
Added an option to allow enchanted repair materials 'Skills.Repair.Use_Enchanted_Materials' in config.yml
|
||||||
Temporarily rolling required Java version back to 16
|
Temporarily rolling required Java version back to 16
|
||||||
Added unicode (UTF-8) support to locale files (no more UTF-16 codes needed)
|
Added unicode (UTF-8) support to locale files (no more UTF-16 codes needed)
|
||||||
Added locale key 'Scoreboard.Disabled' to en_US
|
Added locale key 'Scoreboard.Disabled' to en_US
|
||||||
|
8
pom.xml
8
pom.xml
@ -326,25 +326,25 @@
|
|||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.junit.jupiter</groupId>
|
<groupId>org.junit.jupiter</groupId>
|
||||||
<artifactId>junit-jupiter</artifactId>
|
<artifactId>junit-jupiter</artifactId>
|
||||||
<version>5.8.1</version>
|
<version>5.8.2</version>
|
||||||
<scope>test</scope>
|
<scope>test</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.mockito</groupId>
|
<groupId>org.mockito</groupId>
|
||||||
<artifactId>mockito-core</artifactId>
|
<artifactId>mockito-core</artifactId>
|
||||||
<version>4.0.0</version>
|
<version>4.2.0</version>
|
||||||
<scope>test</scope>
|
<scope>test</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.mockito</groupId>
|
<groupId>org.mockito</groupId>
|
||||||
<artifactId>mockito-inline</artifactId>
|
<artifactId>mockito-inline</artifactId>
|
||||||
<version>4.0.0</version>
|
<version>4.2.0</version>
|
||||||
<scope>test</scope>
|
<scope>test</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.apache.tomcat</groupId>
|
<groupId>org.apache.tomcat</groupId>
|
||||||
<artifactId>tomcat-jdbc</artifactId>
|
<artifactId>tomcat-jdbc</artifactId>
|
||||||
<version>10.0.12</version>
|
<version>10.0.14</version>
|
||||||
<scope>compile</scope>
|
<scope>compile</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
|
@ -391,6 +391,7 @@ Skills:
|
|||||||
Anvil_Placed_Sounds: true
|
Anvil_Placed_Sounds: true
|
||||||
Anvil_Use_Sounds: true
|
Anvil_Use_Sounds: true
|
||||||
Anvil_Material: IRON_BLOCK
|
Anvil_Material: IRON_BLOCK
|
||||||
|
Use_Enchanted_Materials: false
|
||||||
# Ask for a confirmation when a player tries to repair an enchanted item
|
# Ask for a confirmation when a player tries to repair an enchanted item
|
||||||
Confirm_Required: true
|
Confirm_Required: true
|
||||||
Salvage:
|
Salvage:
|
||||||
|
Loading…
Reference in New Issue
Block a user