Skip to content

Commit cf3a9a8

Browse files
committed
Release v0.9.2
1 parent c5b0d04 commit cf3a9a8

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed

build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ plugins {
99
}
1010

1111
group = "hiiragi283.ragium"
12-
version = "0.9.1+121x"
12+
version = "0.9.2+121x"
1313

1414
sourceSets {
1515
main {

src/main/kotlin/hiiragi283/ragium/common/init/RagiumItems.kt

+4-3
Original file line numberDiff line numberDiff line change
@@ -326,12 +326,13 @@ object RagiumItems {
326326
@JvmField
327327
val MELON_PIE = Item(
328328
itemSettings().food(
329-
FoodComponent.Builder()
329+
FoodComponent
330+
.Builder()
330331
.nutrition(8)
331332
.saturationModifier(0.3f)
332333
.usingConvertsTo(Items.MELON_SEEDS)
333-
.build()
334-
)
334+
.build(),
335+
),
335336
)
336337

337338
@JvmField

src/main/kotlin/hiiragi283/ragium/common/internal/RagiumContentRegister.kt

+3-1
Original file line numberDiff line numberDiff line change
@@ -320,7 +320,9 @@ internal object RagiumContentRegister {
320320
registerBlockItem(RagiumBlocks.ITEM_DISPLAY)
321321
registerBlockItem(
322322
RagiumBlocks.ROPE,
323-
itemSettings().descriptions(Text.translatable(RagiumTranslationKeys.ROPE)),
323+
itemSettings()
324+
.descriptions(Text.translatable(RagiumTranslationKeys.ROPE))
325+
.component(RagiumComponentTypes.REWORK_TARGET, Unit),
324326
::HTRopeBlockItem,
325327
)
326328
registerBlockItem(RagiumBlocks.SHAFT)

0 commit comments

Comments
 (0)