Skip to content

Commit

Permalink
removed golden apple
Browse files Browse the repository at this point in the history
  • Loading branch information
DonRaffae committed Jan 16, 2023
1 parent c19d296 commit 6c54050
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 17 deletions.
1 change: 0 additions & 1 deletion src/main/java/aldrigos/mc/craftplus/CraftPlusPlugin.java
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ public void onEnable(){
recipes.getDiamondHorseArmor(),
recipes.getQuartz(),
recipes.getTotem(),
recipes.getGoldApple(),
recipes.getMailHelm(),
recipes.getMailChest(),
recipes.getMailPants(),
Expand Down
15 changes: 0 additions & 15 deletions src/main/java/aldrigos/mc/craftplus/Recipes.java
Original file line number Diff line number Diff line change
Expand Up @@ -168,21 +168,6 @@ public Recipe getTotem(){
return r;
}

public Recipe getGoldApple(){
var r = new ShapedRecipe(
new NamespacedKey(p, "goldenapple"),
new ItemStack(Material.GOLDEN_APPLE)
);

r.shape("ggg",
"gag",
"ggg");
r.setIngredient('g', Material.GOLD_BLOCK);
r.setIngredient('a', Material.APPLE);

return r;
}

public Recipe getMailChest(){
var r = new ShapedRecipe(
new NamespacedKey(p, "CHAINMAIL_CHESTPLATE"),
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/plugin.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
main: aldrigos.mc.craftplus.CraftPlusPlugin
name: CraftPlus
version: '0.1.3.0'
version: '0.1.3.1'
description: Add more recipes!
load: POSTWORLD
author: Aldrigo Raffaele
Expand Down

0 comments on commit 6c54050

Please sign in to comment.