mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2025-04-04 10:46:23 +02:00
Fixed IllegalArguementException in Fishing when the result stack didn't
have a max durability.
This commit is contained in:
parent
1642c61b7f
commit
d1041c30db
@ -109,7 +109,11 @@ public class Fishing {
|
|||||||
theCatch.setItemStack(new ItemStack(Material.RAW_FISH));
|
theCatch.setItemStack(new ItemStack(Material.RAW_FISH));
|
||||||
}
|
}
|
||||||
|
|
||||||
theCatch.getItemStack().setDurability((short) (random.nextInt(theCatch.getItemStack().getType().getMaxDurability()))); //Change durability to random value
|
short maxDurability = theCatch.getItemStack().getType().getMaxDurability();
|
||||||
|
|
||||||
|
if (maxDurability > 0) {
|
||||||
|
theCatch.getItemStack().setDurability((short) (random.nextInt(maxDurability))); //Change durability to random value
|
||||||
|
}
|
||||||
|
|
||||||
m.mcDropItem(player.getLocation(), new ItemStack(Material.RAW_FISH)); //Always drop a fish
|
m.mcDropItem(player.getLocation(), new ItemStack(Material.RAW_FISH)); //Always drop a fish
|
||||||
PP.addXP(SkillType.FISHING, LoadProperties.mfishing, player);
|
PP.addXP(SkillType.FISHING, LoadProperties.mfishing, player);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user