Skip to content

Commit

Permalink
hopefully fix PssbleTrngle#132
Browse files Browse the repository at this point in the history
this would theoretically probably fix an issue where it doesn't properly drop its filled self, the only way to break it filled seems to have been to have it already filled or to use a custom mechanic to break and equip it when right clicked with an empty hand and no back armor on.
  • Loading branch information
j-romchain authored Sep 19, 2024
1 parent c63a8c3 commit e2eda89
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions src/main/kotlin/com/possible_triangle/create_jetpack/Content.kt
Original file line number Diff line number Diff line change
Expand Up @@ -126,11 +126,15 @@ object Content {
LootItem.lootTableItem(getItem())
.apply(
CopyNbtFunction.copyData(ContextNbtProvider.BLOCK_ENTITY)
.copy("Air", "Air")
.copy("VanillaTag", "{}", CopyNbtFunction.MergeStrategy.MERGE)
)
.apply(
CopyNbtFunction.copyData(ContextNbtProvider.BLOCK_ENTITY)
.copy("VanillaTag", "{}", CopyNbtFunction.MergeStrategy.MERGE)
.copy("VanillaTag.Air", "Air")
)
.apply(
CopyNbtFunction.copyData(ContextNbtProvider.BLOCK_ENTITY)
.copy("Air", "Air")
)
)
)
Expand Down Expand Up @@ -203,4 +207,4 @@ object Content {
}
}

}
}

0 comments on commit e2eda89

Please sign in to comment.