1
0
mirror of https://github.com/mcMMO-Dev/mcMMO.git synced 2025-03-31 08:46:26 +02:00

Salvage always asks for confirmation before breaking an item

This commit is contained in:
nossr50 2019-06-07 10:26:49 -07:00
parent e37820d25e
commit 77fbf7f51e
3 changed files with 5 additions and 2 deletions
Changelog.txtpom.xml
src/main/java/com/gmail/nossr50/listeners

@ -1,3 +1,6 @@
Version 2.1.71
Salvage will now always ask for confirmation before breaking your items (instead of only asking for enchanted items)
Version 2.1.70 Version 2.1.70
Added new DatabaseAPI to the API package, has features relating to database operations Added new DatabaseAPI to the API package, has features relating to database operations
Fixed a bug where shulker boxes (without colors) would activate tool ready messages Fixed a bug where shulker boxes (without colors) would activate tool ready messages

@ -2,7 +2,7 @@
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<groupId>com.gmail.nossr50.mcMMO</groupId> <groupId>com.gmail.nossr50.mcMMO</groupId>
<artifactId>mcMMO</artifactId> <artifactId>mcMMO</artifactId>
<version>2.1.70</version> <version>2.1.71-SNAPSHOT</version>
<name>mcMMO</name> <name>mcMMO</name>
<url>https://github.com/mcMMO-Dev/mcMMO</url> <url>https://github.com/mcMMO-Dev/mcMMO</url>
<scm> <scm>

@ -619,7 +619,7 @@ public class PlayerListener implements Listener {
event.setCancelled(true); event.setCancelled(true);
// Make sure the player knows what he's doing when trying to salvage an enchanted item // Make sure the player knows what he's doing when trying to salvage an enchanted item
if (!(heldItem.getEnchantments().size() > 0) || salvageManager.checkConfirmation(true)) { if (salvageManager.checkConfirmation(true)) {
SkillUtils.handleAbilitySpeedDecrease(player); SkillUtils.handleAbilitySpeedDecrease(player);
salvageManager.handleSalvage(block.getLocation(), heldItem); salvageManager.handleSalvage(block.getLocation(), heldItem);
player.updateInventory(); player.updateInventory();