Skip to content

Commit

Permalink
fix horse armors
Browse files Browse the repository at this point in the history
  • Loading branch information
DonRaffae committed Feb 12, 2020
1 parent 0f10b7b commit 25dd53d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/main/java/aldrigos/mc/craftplus/Recipes.java
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ public Recipe getIronHorseArmor(){
public Recipe getGoldHorseArmor(){
var r = new ShapedRecipe(
new NamespacedKey(p, "goldhorsearmor"),
new ItemStack(Material.IRON_HORSE_ARMOR)
new ItemStack(Material.GOLDEN_HORSE_ARMOR)
);

r.shape("i i",
Expand All @@ -123,7 +123,7 @@ public Recipe getGoldHorseArmor(){
public Recipe getDiamondHorseArmor(){
var r = new ShapedRecipe(
new NamespacedKey(p, "diamondhorsearmor"),
new ItemStack(Material.IRON_HORSE_ARMOR)
new ItemStack(Material.DIAMOND_HORSE_ARMOR)
);

r.shape("i i",
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.1.0'
version: '0.1.2.0'
description: Add more recipes!
load: POSTWORLD
author: Aldrigo Raffaele
Expand Down

0 comments on commit 25dd53d

Please sign in to comment.