diff --git a/src/main/java/us/camin/regions/RegionPostItemWatcher.java b/src/main/java/us/camin/regions/RegionPostItemWatcher.java index 019e93f..83c8553 100644 --- a/src/main/java/us/camin/regions/RegionPostItemWatcher.java +++ b/src/main/java/us/camin/regions/RegionPostItemWatcher.java @@ -53,8 +53,8 @@ public class RegionPostItemWatcher implements Listener { NamespacedKey chargeKey = new NamespacedKey(m_plugin, "region_post_charge"); ShapedRecipe chargeRecipe = new ShapedRecipe(chargeKey, m_theChargeItem); chargeRecipe.shape("DDD", "DGD", "DDD"); - chargeRecipe.setIngredient('D', Material.GLOWSTONE_DUST); - chargeRecipe.setIngredient('G', Material.GHAST_TEAR); + chargeRecipe.setIngredient('D', Material.PURPUR_BLOCK); + chargeRecipe.setIngredient('G', Material.QUARTZ); NamespacedKey anchorKey = new NamespacedKey(m_plugin, "region_post_anchor"); ShapedRecipe anchorRecipe = new ShapedRecipe(anchorKey, m_theAnchor); @@ -67,7 +67,7 @@ public class RegionPostItemWatcher implements Listener { // Uses four fewer charges, slightly cheaper. // TODO: Maybe we just want this to be glowstone instead of effectively 4 // ghast tears? - compassRecipe.shape(" D ", "DGD", " D "); + compassRecipe.shape(" D ", " G ", " "); compassRecipe.setIngredient('D', new RecipeChoice.ExactChoice(m_theChargeItem)); compassRecipe.setIngredient('G', Material.COMPASS);