From 669fab22cd519028b38f4582e14c95215948da62 Mon Sep 17 00:00:00 2001 From: Torrie Fischer Date: Sun, 18 Sep 2022 12:31:41 +0200 Subject: [PATCH] regionpostitemwatcher: rewrite region charge recipe to be cheaper --- src/main/java/us/camin/regions/RegionPostItemWatcher.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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);