Fixed Ibis not rewarding exp when catching swordfish

This commit is contained in:
randy 2025-04-12 08:31:36 -06:00
parent fa429edc03
commit 67990205b4

View file

@ -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;