mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2024-11-22 05:06:45 +01:00
Fixed Fishing treasures always having the same enchants.
This commit is contained in:
parent
377ed9e8e5
commit
42a30b4521
@ -22,6 +22,7 @@ Version 1.4.06-dev
|
||||
= Fixed bug where experience commands were adding levels to all skills when they shouldn't
|
||||
= Fixed mcmmo.commands.ptp.send not being set by default
|
||||
= Fixed NPE when trying to tab-complete /mctop
|
||||
= Fixed Fishing treasures always having the same enchants
|
||||
! Changed Berserk to add items to inventory rather than denying pickup
|
||||
! Changed Chimaera Wing's recipe result to use the ingredient Material
|
||||
! Players will no longer pickup items to their hotbar while using Unarmed
|
||||
|
@ -112,7 +112,7 @@ public class FishingManager extends SkillManager {
|
||||
player.sendMessage(LocaleLoader.getString("Fishing.ItemFound"));
|
||||
|
||||
treasureXp = treasure.getXp();
|
||||
ItemStack treasureDrop = treasure.getDrop();
|
||||
ItemStack treasureDrop = treasure.getDrop().clone(); // Not cloning is bad, m'kay?
|
||||
|
||||
if (Permissions.magicHunter(player) && ItemUtils.isEnchantable(treasureDrop) && handleMagicHunter(treasureDrop)) {
|
||||
player.sendMessage(LocaleLoader.getString("Fishing.MagicFound"));
|
||||
|
Loading…
Reference in New Issue
Block a user