Skip to content

Commit

Permalink
Fixed potato seed quantity in A Tail of Two Cats
Browse files Browse the repository at this point in the history
  • Loading branch information
Zoinkwiz committed Oct 28, 2020
1 parent 896511d commit 566c081
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ dependencies {
}

group = 'com.questhelper'
version = '1.1.1'
version = '1.1.2'
sourceCompatibility = '1.8'

tasks.withType(JavaCompile) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ public void setupItemRequirements()
milk.setHighlightInInventory(true);
shears = new ItemRequirement("Shears", ItemID.SHEARS);
shears.setHighlightInInventory(true);
potatoSeed4 = new ItemRequirement("Potato seeds", ItemID.POTATO_SEED);
potatoSeed4 = new ItemRequirement("Potato seeds", ItemID.POTATO_SEED, 4);
potatoSeed4.setHighlightInInventory(true);
rake = new ItemRequirement("Rake", ItemID.RAKE);
rake.setHighlightInInventory(true);
Expand Down

0 comments on commit 566c081

Please sign in to comment.