File tree Expand file tree Collapse file tree 4 files changed +17
-19
lines changed
data/create_jetpack/loot_tables/blocks
main/kotlin/com/possible_triangle/create_jetpack Expand file tree Collapse file tree 4 files changed +17
-19
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,6 @@ e0bae5867d547956d13f7d044aa12cac27a7e1ff assets/create_jetpack/models/block/jetp
9
9
a765123500d1e47eda40673e0b7d7b552ef3e03a assets/create_jetpack/models/item/netherite_jetpack.json
10
10
3652f8f7b454940050f090ab32d38e04b93e14f8 assets/create_jetpack/models/item/netherite_jetpack_placeable.json
11
11
b7af399e696578d85930f7533fb28d2bfcc9aadb data/create/tags/items/pressurized_air_sources.json
12
- 9fecd2df067a7650535b262f7ef49152c0aee543 data/create_jetpack/loot_tables/blocks/jetpack.json
13
- 64a9689f072509bc4fd73d8e1984638bbfdba582 data/create_jetpack/loot_tables/blocks/netherite_jetpack.json
12
+ 9f37968900dc751f4649772a20232f35ea367fb9 data/create_jetpack/loot_tables/blocks/jetpack.json
13
+ 59dc7a4ced7e4b35fb91bf4b18e10e798b563748 data/create_jetpack/loot_tables/blocks/netherite_jetpack.json
14
14
b7af399e696578d85930f7533fb28d2bfcc9aadb data/minecraft/tags/blocks/mineable/pickaxe.json
Original file line number Diff line number Diff line change 13
13
"source" : " block_entity" ,
14
14
"ops" : [
15
15
{
16
- "source" : " Air " ,
17
- "target" : " Air " ,
18
- "op" : " replace "
16
+ "source" : " VanillaTag " ,
17
+ "target" : " {} " ,
18
+ "op" : " merge "
19
19
}
20
20
]
21
21
},
24
24
"source" : " block_entity" ,
25
25
"ops" : [
26
26
{
27
- "source" : " VanillaTag " ,
28
- "target" : " {} " ,
29
- "op" : " merge "
27
+ "source" : " Air " ,
28
+ "target" : " Air " ,
29
+ "op" : " replace "
30
30
}
31
31
]
32
32
}
Original file line number Diff line number Diff line change 13
13
"source" : " block_entity" ,
14
14
"ops" : [
15
15
{
16
- "source" : " Air " ,
17
- "target" : " Air " ,
18
- "op" : " replace "
16
+ "source" : " VanillaTag " ,
17
+ "target" : " {} " ,
18
+ "op" : " merge "
19
19
}
20
20
]
21
21
},
24
24
"source" : " block_entity" ,
25
25
"ops" : [
26
26
{
27
- "source" : " VanillaTag " ,
28
- "target" : " {} " ,
29
- "op" : " merge "
27
+ "source" : " Air " ,
28
+ "target" : " Air " ,
29
+ "op" : " replace "
30
30
}
31
31
]
32
32
}
Original file line number Diff line number Diff line change @@ -8,9 +8,7 @@ import com.possible_triangle.create_jetpack.item.JetpackItem
8
8
import com.simibubi.create.AllCreativeModeTabs
9
9
import com.simibubi.create.AllTags.AllItemTags
10
10
import com.simibubi.create.Create
11
- import com.simibubi.create.content.equipment.armor.AllArmorMaterials
12
- import com.simibubi.create.content.equipment.armor.BacktankBlockEntity
13
- import com.simibubi.create.content.equipment.armor.BacktankInstance
11
+ import com.simibubi.create.content.equipment.armor.*
14
12
import com.simibubi.create.content.equipment.armor.BacktankItem.BacktankBlockItem
15
13
import com.simibubi.create.content.equipment.armor.BacktankRenderer
16
14
import com.simibubi.create.content.kinetics.BlockStressDefaults
@@ -126,11 +124,11 @@ object Content {
126
124
LootItem .lootTableItem(getItem())
127
125
.apply (
128
126
CopyNbtFunction .copyData(ContextNbtProvider .BLOCK_ENTITY )
129
- .copy(" Air " , " Air " )
127
+ .copy(" VanillaTag " , " {} " , CopyNbtFunction . MergeStrategy . MERGE )
130
128
)
131
129
.apply (
132
130
CopyNbtFunction .copyData(ContextNbtProvider .BLOCK_ENTITY )
133
- .copy(" VanillaTag " , " {} " , CopyNbtFunction . MergeStrategy . MERGE )
131
+ .copy(" Air " , " Air " )
134
132
)
135
133
)
136
134
)
You can’t perform that action at this time.
0 commit comments