Skip to content

Commit

Permalink
fix: Adjust div rod default tiers to match recipes
Browse files Browse the repository at this point in the history
  • Loading branch information
klikli-dev committed Feb 21, 2023
1 parent b9c1f7f commit 4e0089e
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,13 +52,13 @@ public class ItemRegistry {
public static final RegistryObject<Item> DIVINATION_ROD_T3 =
ITEMS.register("divination_rod_t3", () -> new DivinationRodItem(
defaultProperties().stacksTo(1).defaultDurability(1),
Tiers.IRON, TagRegistry.DIVINATION_ROD_T3_ALLOWED_BLOCKS, TagRegistry.DIVINATION_ROD_T3_DISALLOWED_BLOCKS,
Tiers.DIAMOND, TagRegistry.DIVINATION_ROD_T3_ALLOWED_BLOCKS, TagRegistry.DIVINATION_ROD_T3_DISALLOWED_BLOCKS,
96, 40, 9, true));

public static final RegistryObject<Item> DIVINATION_ROD_T4 =
ITEMS.register("divination_rod_t4", () -> new DivinationRodItem(
defaultProperties().stacksTo(1).defaultDurability(1),
Tiers.IRON, TagRegistry.DIVINATION_ROD_T4_ALLOWED_BLOCKS, TagRegistry.DIVINATION_ROD_T4_DISALLOWED_BLOCKS,
Tiers.NETHERITE, TagRegistry.DIVINATION_ROD_T4_ALLOWED_BLOCKS, TagRegistry.DIVINATION_ROD_T4_DISALLOWED_BLOCKS,
96, 40, 12, true));
//TODO: in the future, no attuning for higher tier rods

Expand Down

0 comments on commit 4e0089e

Please sign in to comment.