|
@@ -3,13 +3,11 @@ package com.gmail.nossr50.datatypes.treasure;
|
|
|
import org.bukkit.inventory.ItemStack;
|
|
|
|
|
|
public class FishingTreasure extends Treasure {
|
|
|
-
|
|
|
private int maxLevel;
|
|
|
|
|
|
public FishingTreasure(ItemStack drop, int xp, Double dropChance, int dropLevel, int maxLevel) {
|
|
|
super(drop, xp, dropChance, dropLevel);
|
|
|
this.setMaxLevel(maxLevel);
|
|
|
- // TODO Auto-generated constructor stub
|
|
|
}
|
|
|
|
|
|
public int getMaxLevel() {
|
|
@@ -19,5 +17,4 @@ public class FishingTreasure extends Treasure {
|
|
|
public void setMaxLevel(int maxLevel) {
|
|
|
this.maxLevel = maxLevel;
|
|
|
}
|
|
|
-
|
|
|
}
|