|
@@ -485,6 +485,10 @@ public class FishingManager extends SkillManager {
|
|
treasureDrop.setDurability((short) (Misc.getRandom().nextInt(maxDurability)));
|
|
treasureDrop.setDurability((short) (Misc.getRandom().nextInt(maxDurability)));
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ if (treasureDrop.getAmount() > 1) {
|
|
|
|
+ treasureDrop.setAmount(Misc.getRandom().nextInt(treasureDrop.getAmount()) + 1);
|
|
|
|
+ }
|
|
|
|
+
|
|
treasure.setDrop(treasureDrop);
|
|
treasure.setDrop(treasureDrop);
|
|
|
|
|
|
return treasure;
|
|
return treasure;
|