mirror of
https://github.com/Ellpeck/ActuallyAdditions.git
synced 2024-11-21 15:03:30 +01:00
Merge remote-tracking branch 'origin/main'
# Conflicts: # CHANGELOG.md
This commit is contained in:
commit
35001cb9e8
11 changed files with 100 additions and 3 deletions
|
@ -2,6 +2,8 @@
|
|||
* Fixed Farmer not playing well with non-vanilla farmland.
|
||||
* Added the ability to change the farmers work area with a compass.
|
||||
* Make blocks still drop items even when broken incorrectly.
|
||||
* Add AIOT to the necessary tool related item tags (swords, pickaxes, axes, shovels)
|
||||
* Fix the Engineer Goggles not rendering correctly
|
||||
* Added the ability for fluid collectors to collect water and lava from filled cauldrons.
|
||||
|
||||
# 1.3.10+mc1.21.1
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// 1.21.1 2024-10-31T20:14:02.6354984 Tags for minecraft:item mod id actuallyadditions
|
||||
// 1.21.1 2024-11-16T23:02:28.9307514 Tags for minecraft:item mod id actuallyadditions
|
||||
87327118c2f16da245b76de4fdcaab149456d9b8 data/actuallyadditions/tags/item/coffee_beans.json
|
||||
f3ee78cd8c9563bd1828de2b4b336735f289f9f2 data/actuallyadditions/tags/item/crystals.json
|
||||
441008b49b4bab00125100fc969cb6582eff7271 data/actuallyadditions/tags/item/crystal_blocks.json
|
||||
|
@ -38,6 +38,11 @@ fb95ac8041521e1d2879f6fcb652266dcd9e0fb1 data/c/tags/item/storage_blocks/empower
|
|||
148cd937543fd58b196403c18839b2698bf87fdf data/c/tags/item/storage_blocks/palis_crystal.json
|
||||
b9aa28a54d47054ba5653bec2f20e0a675ab5120 data/c/tags/item/storage_blocks/restonia_crystal.json
|
||||
fb4f349bc6fd89f26ef2ba72a9236f05eefd8ea2 data/c/tags/item/storage_blocks/void_crystal.json
|
||||
67af57742b08793269bb4a594e224a05f55b83e5 data/minecraft/tags/item/axes.json
|
||||
67af57742b08793269bb4a594e224a05f55b83e5 data/minecraft/tags/item/cluster_max_harvestables.json
|
||||
67af57742b08793269bb4a594e224a05f55b83e5 data/minecraft/tags/item/pickaxes.json
|
||||
67af57742b08793269bb4a594e224a05f55b83e5 data/minecraft/tags/item/shovels.json
|
||||
51d50547b5f031f4fa6e62189af06059a407c009 data/minecraft/tags/item/slabs.json
|
||||
a60870f29ca48ea0d55ac32620ff5b4bb2f2f62e data/minecraft/tags/item/stairs.json
|
||||
67af57742b08793269bb4a594e224a05f55b83e5 data/minecraft/tags/item/swords.json
|
||||
f74407e86c92d0d9435d62ff0f95999f3a84c674 data/minecraft/tags/item/walls.json
|
||||
|
|
10
src/generated/resources/data/minecraft/tags/item/axes.json
Normal file
10
src/generated/resources/data/minecraft/tags/item/axes.json
Normal file
|
@ -0,0 +1,10 @@
|
|||
{
|
||||
"values": [
|
||||
"actuallyadditions:wooden_aiot",
|
||||
"actuallyadditions:stone_aiot",
|
||||
"actuallyadditions:iron_aiot",
|
||||
"actuallyadditions:gold_aiot",
|
||||
"actuallyadditions:diamond_aiot",
|
||||
"actuallyadditions:netherite_aiot"
|
||||
]
|
||||
}
|
|
@ -0,0 +1,10 @@
|
|||
{
|
||||
"values": [
|
||||
"actuallyadditions:wooden_aiot",
|
||||
"actuallyadditions:stone_aiot",
|
||||
"actuallyadditions:iron_aiot",
|
||||
"actuallyadditions:gold_aiot",
|
||||
"actuallyadditions:diamond_aiot",
|
||||
"actuallyadditions:netherite_aiot"
|
||||
]
|
||||
}
|
|
@ -0,0 +1,10 @@
|
|||
{
|
||||
"values": [
|
||||
"actuallyadditions:wooden_aiot",
|
||||
"actuallyadditions:stone_aiot",
|
||||
"actuallyadditions:iron_aiot",
|
||||
"actuallyadditions:gold_aiot",
|
||||
"actuallyadditions:diamond_aiot",
|
||||
"actuallyadditions:netherite_aiot"
|
||||
]
|
||||
}
|
|
@ -0,0 +1,10 @@
|
|||
{
|
||||
"values": [
|
||||
"actuallyadditions:wooden_aiot",
|
||||
"actuallyadditions:stone_aiot",
|
||||
"actuallyadditions:iron_aiot",
|
||||
"actuallyadditions:gold_aiot",
|
||||
"actuallyadditions:diamond_aiot",
|
||||
"actuallyadditions:netherite_aiot"
|
||||
]
|
||||
}
|
10
src/generated/resources/data/minecraft/tags/item/swords.json
Normal file
10
src/generated/resources/data/minecraft/tags/item/swords.json
Normal file
|
@ -0,0 +1,10 @@
|
|||
{
|
||||
"values": [
|
||||
"actuallyadditions:wooden_aiot",
|
||||
"actuallyadditions:stone_aiot",
|
||||
"actuallyadditions:iron_aiot",
|
||||
"actuallyadditions:gold_aiot",
|
||||
"actuallyadditions:diamond_aiot",
|
||||
"actuallyadditions:netherite_aiot"
|
||||
]
|
||||
}
|
|
@ -120,5 +120,46 @@ public class ItemTagsGenerator extends ItemTagsProvider {
|
|||
);
|
||||
|
||||
tag(ActuallyTags.Items.CURIOS_CHARM).add(ActuallyItems.CRAFTER_ON_A_STICK.get());
|
||||
|
||||
tag(ItemTags.SWORDS).add(
|
||||
ActuallyItems.WOODEN_AIOT.get(),
|
||||
ActuallyItems.STONE_AIOT.get(),
|
||||
ActuallyItems.IRON_AIOT.get(),
|
||||
ActuallyItems.GOLD_AIOT.get(),
|
||||
ActuallyItems.DIAMOND_AIOT.get(),
|
||||
ActuallyItems.NETHERITE_AIOT.get()
|
||||
);
|
||||
tag(ItemTags.AXES).add(
|
||||
ActuallyItems.WOODEN_AIOT.get(),
|
||||
ActuallyItems.STONE_AIOT.get(),
|
||||
ActuallyItems.IRON_AIOT.get(),
|
||||
ActuallyItems.GOLD_AIOT.get(),
|
||||
ActuallyItems.DIAMOND_AIOT.get(),
|
||||
ActuallyItems.NETHERITE_AIOT.get()
|
||||
);
|
||||
tag(ItemTags.PICKAXES).add(
|
||||
ActuallyItems.WOODEN_AIOT.get(),
|
||||
ActuallyItems.STONE_AIOT.get(),
|
||||
ActuallyItems.IRON_AIOT.get(),
|
||||
ActuallyItems.GOLD_AIOT.get(),
|
||||
ActuallyItems.DIAMOND_AIOT.get(),
|
||||
ActuallyItems.NETHERITE_AIOT.get()
|
||||
);
|
||||
tag(ItemTags.CLUSTER_MAX_HARVESTABLES).add(
|
||||
ActuallyItems.WOODEN_AIOT.get(),
|
||||
ActuallyItems.STONE_AIOT.get(),
|
||||
ActuallyItems.IRON_AIOT.get(),
|
||||
ActuallyItems.GOLD_AIOT.get(),
|
||||
ActuallyItems.DIAMOND_AIOT.get(),
|
||||
ActuallyItems.NETHERITE_AIOT.get()
|
||||
);
|
||||
tag(ItemTags.SHOVELS).add(
|
||||
ActuallyItems.WOODEN_AIOT.get(),
|
||||
ActuallyItems.STONE_AIOT.get(),
|
||||
ActuallyItems.IRON_AIOT.get(),
|
||||
ActuallyItems.GOLD_AIOT.get(),
|
||||
ActuallyItems.DIAMOND_AIOT.get(),
|
||||
ActuallyItems.NETHERITE_AIOT.get()
|
||||
);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -46,8 +46,7 @@ public class ArmorMaterials {
|
|||
SoundEvents.ARMOR_EQUIP_GENERIC,
|
||||
() -> Ingredient.EMPTY,
|
||||
List.of(
|
||||
new ArmorMaterial.Layer(ActuallyAdditions.modLoc("goggles"), "", true),
|
||||
new ArmorMaterial.Layer(ActuallyAdditions.modLoc("goggles"), "_overlay", false)
|
||||
new ArmorMaterial.Layer(ActuallyAdditions.modLoc("goggles"), "", true)
|
||||
),
|
||||
0.0F,
|
||||
0.0F
|
||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 1.7 KiB |
Before Width: | Height: | Size: 2 KiB After Width: | Height: | Size: 2 KiB |
Loading…
Reference in a new issue