Skip to content

Commit

Permalink
fix raw snail item id in InAidOfTheMyreque.java
Browse files Browse the repository at this point in the history
  • Loading branch information
mateuscv authored Nov 24, 2024
1 parent 96f0b12 commit 3997c4f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -233,8 +233,8 @@ protected void setupRequirements()
planks11 = new ItemRequirement("Plank", ItemID.PLANK, 11);
nails44 = new ItemRequirement("Any nails", ItemCollections.NAILS, 44);
swampPaste = new ItemRequirement("Swamp paste", ItemID.SWAMP_PASTE, 2);
snails10 = new ItemRequirement("Raw snail", ItemID.THIN_SNAIL_MEAT);
snails10.addAlternates(ItemID.FAT_SNAIL_MEAT, ItemID.LEAN_SNAIL_MEAT);
snails10 = new ItemRequirement("Raw snail", ItemID.THIN_SNAIL);
snails10.addAlternates(ItemID.FAT_SNAIL, ItemID.LEAN_SNAIL);
mackerel10 = new ItemRequirement("Raw mackerel", ItemID.RAW_MACKEREL, 10);
rawMackerelOrSnail10 = new ItemRequirements("10 Raw mackerel or raw snail meat (random for each player)",
mackerel10,
Expand Down

0 comments on commit 3997c4f

Please sign in to comment.