Skip to content

Commit

Permalink
update Kettle mining tool
Browse files Browse the repository at this point in the history
  • Loading branch information
luxtracon committed Sep 21, 2024
1 parent dd6c887 commit 92169f8
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions LOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ Updates
- update Bubbles spawned from Bubble Spell to play a sound when they pop
- update Bubbles spawned from Bubble Spell to pop at different times instead of all at once
- update Kettle sound type from stone to wood since it is mostly made of wood instead of stone
- update Kettle to be mined using any axe instead of a pickaxe since it is mostly made of wood instead of stone
- update Pillar Heads to show a tooltip, hinting their placement can be inverted while sneaking
- update spawn rates for Argan Hound and Cerver to spread out their appearance and make place for the newly added Crocotta, Argan Hounds mostly occur in Forests now and Cervers mostly occur in Scrublands now
- update Troughs to be able to be filled with Water using Water Bottles and emptied using Glass Bottles, to be filled with Mediterranean Water using Mediterranean Water Buckets and emptied using Buckets, to be filled with Onions for Sows to feed from, to be filled with Spelt for Aeternae and Catoblepas to feed from, to be filled with Vineberries for Capella to feed from
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"values": [
"landsoficaria:vine_reed_block",
"landsoficaria:kettle",
"landsoficaria:chest",
"landsoficaria:trapped_chest",
"landsoficaria:cypress_wood",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,6 @@
"landsoficaria:vanadiumsteel_bars",
"landsoficaria:horizontal_vanadiumsteel_bars",
"landsoficaria:vanadiumsteel_chain",
"landsoficaria:kettle",
"landsoficaria:grinder",
"landsoficaria:kiln",
"landsoficaria:forge",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -283,6 +283,7 @@ public void addTags(HolderLookup.Provider pProvider) {

this.tag(BlockTags.MINEABLE_WITH_AXE)
.add(IcariaBlocks.VINE_REED_BLOCK.get())
.add(IcariaBlocks.KETTLE.get())
.add(IcariaBlocks.CHEST.get())
.add(IcariaBlocks.TRAPPED_CHEST.get())
.add(IcariaBlocks.CYPRESS_WOOD.get())
Expand Down Expand Up @@ -531,7 +532,6 @@ public void addTags(HolderLookup.Provider pProvider) {
.add(IcariaBlocks.VANADIUMSTEEL_BARS.get())
.add(IcariaBlocks.HORIZONTAL_VANADIUMSTEEL_BARS.get())
.add(IcariaBlocks.VANADIUMSTEEL_CHAIN.get())
.add(IcariaBlocks.KETTLE.get())
.add(IcariaBlocks.GRINDER.get())
.add(IcariaBlocks.KILN.get())
.add(IcariaBlocks.FORGE.get())
Expand Down

0 comments on commit 92169f8

Please sign in to comment.