Skip to content

Commit

Permalink
fix: add c:ores tag to sal ammoniac ore
Browse files Browse the repository at this point in the history
  • Loading branch information
klikli-dev committed Jul 22, 2024
1 parent 10d3ad9 commit 5caa1ef
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
// 1.21 2024-07-09T13:31:12.322223 Books: theurgy
// 1.21 2024-07-22T08:52:41.0558195 Books: theurgy
c473bf5aa94f847c736c37f1a9f85c86b8bce95d data/theurgy/modonomicon/books/the_hermetica/book.json
74a2622bcd8dc6316c5977cbea5a026d81dcff87 data/theurgy/modonomicon/books/the_hermetica/categories/apparatus.json
6f877a9734359091748cca949c8e6c569ad2d67e data/theurgy/modonomicon/books/the_hermetica/categories/getting_started.json
cbf1b4d247d68abae32e0330622a999b430fe683 data/theurgy/modonomicon/books/the_hermetica/categories/logistics.json
c901ff2af9083916a51d916567c4d9475469ce80 data/theurgy/modonomicon/books/the_hermetica/categories/logistics.json
b566a66d301147d1840b1ffd152d40d67b1213d4 data/theurgy/modonomicon/books/the_hermetica/entries/apparatus/basic_vat_automation.json
6c84ad07a9d4564bfc6e8f76021c725e4e53505b data/theurgy/modonomicon/books/the_hermetica/entries/apparatus/calcination_oven.json
6a4cf4119c1339960918069c955dd1db251d7a59 data/theurgy/modonomicon/books/the_hermetica/entries/apparatus/caloric_flux_emitter.json
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
// 1.21 2024-06-16T12:34:15.3269222 Tags for minecraft:item mod id theurgy
// 1.21 2024-07-22T08:52:41.0588189 Tags for minecraft:item mod id theurgy
f41150cbf3906d7eb1284a3f289d93bb80e57b9f data/c/tags/item/gems.json
9a414088a384ea8077655b79eb53ac263aaae5e3 data/c/tags/item/gems/sal_ammoniac.json
2a6db3eadd0ca532bb90db84dde920e689ea0e24 data/c/tags/item/ores.json
04abd356cb9b230f4d1adcf90db05571e8a17d05 data/c/tags/item/ores/sal_ammoniac.json
9148832ee4e83df2b37e23918707fd8046f26ff7 data/c/tags/item/ores_in_ground/deepslate.json
f8295983ffdb0c42c6c8b12788a5b63c1eb43f72 data/c/tags/item/ores_in_ground/stone.json
Expand Down
5 changes: 5 additions & 0 deletions src/generated/resources/data/c/tags/item/ores.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"values": [
"#c:ores/sal_ammoniac"
]
}
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@ protected void addTags(HolderLookup.Provider pProvider) {
this.copy(Tags.Blocks.ORES_IN_GROUND_STONE, Tags.Items.ORES_IN_GROUND_STONE);
this.copy(Tags.Blocks.ORES_IN_GROUND_DEEPSLATE, Tags.Items.ORES_IN_GROUND_DEEPSLATE);

this.tag(Tags.Items.ORES).addTag(ItemTagRegistry.ORES_SAL_AMMONIAC);

this.tag(ItemTagRegistry.GEMS_SAL_AMMONIAC)
.add(ItemRegistry.SAL_AMMONIAC_CRYSTAL.get());
this.tag(Tags.Items.GEMS).addTag(ItemTagRegistry.GEMS_SAL_AMMONIAC);
Expand Down

0 comments on commit 5caa1ef

Please sign in to comment.