Skip to content

Commit

Permalink
recipe: Update ElytraRecipe to use feathers
Browse files Browse the repository at this point in the history
  • Loading branch information
kiriDevs committed Jan 30, 2022
1 parent 4422ad0 commit 81b7462
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,11 @@ public ElytraRecipe(Plugin nsPlugin) {
protected ArrayList<Recipe> buildRecipes() {
NamespacedKey nsKey = new NamespacedKey(this.nsPlugin, "elytraRecipe");
Recipe rec1 = new ShapedRecipe(nsKey, this.outputStack)
.shape("ppp", "plp", "ptp")
.shape("ppp", "plp", "ftf")
.setIngredient('p', Material.PHANTOM_MEMBRANE)
.setIngredient('l', Material.LEATHER)
.setIngredient('t', Material.TOTEM_OF_UNDYING);
.setIngredient('t', Material.TOTEM_OF_UNDYING)
.setIngredient('f', Material.FEATHER);

return new ArrayList<>() {{ add(rec1); }};
}
Expand Down

0 comments on commit 81b7462

Please sign in to comment.