The returned ItemStack is modified for both Sheep and Skeletons, so a copy should be returned.
@@ -145,7 +145,7 @@ public final class Fishing {
cumulatedProbability += treasure.getDropChance();
if (dropProbability < cumulatedProbability) {
- return treasure.getDrop();
+ return treasure.getDrop().clone();
}