mirror of
https://gitlab.com/2009scape/2009scape.git
synced 2026-08-01 14:39:13 -06:00
Ibis now forages raw fish instead of cooked fish
This commit is contained in:
parent
2e1ecd845b
commit
a7b29d7615
1 changed files with 2 additions and 2 deletions
|
|
@ -40,7 +40,7 @@ public class IbisNPC extends Forager {
|
|||
* @param id The id.
|
||||
*/
|
||||
public IbisNPC(Player owner, int id) {
|
||||
super(owner, id, 3800, 12531, 12, new Item(361), new Item(373));
|
||||
super(owner, id, 3800, 12531, 12, new Item(359), new Item(371));
|
||||
boosts.add(new SkillBonus(Skills.FISHING, 3));
|
||||
}
|
||||
|
||||
|
|
@ -54,7 +54,7 @@ public class IbisNPC extends Forager {
|
|||
@Override
|
||||
public boolean produceItem(Item item) {
|
||||
if (super.produceItem(item)) {
|
||||
if (item.getId() == 373) {
|
||||
if (item.getId() == 371) {
|
||||
owner.getSkills().addExperience(Skills.FISHING, 10);
|
||||
}
|
||||
return true;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue