Skip to content

Commit

Permalink
feat: update sc-peripherals 3D print meta
Browse files Browse the repository at this point in the history
  • Loading branch information
Lemmmy committed Mar 29, 2024
1 parent 8563b5b commit 7e59a36
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
6 changes: 3 additions & 3 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ systemProp.kotlinVersion = 1.9.23
fabricKotlinVersion = 1.10.19+kotlin.1.9.23

# Mod Properties
modVersion = 1.11.1
modVersion = 1.11.2
mavenGroup = io.sc3

# Dependencies
Expand All @@ -38,5 +38,5 @@ scLibraryVersion = 1.5.0
# ===========================
# Third party mod integration
# ===========================
scPeripheralsVersion = 1.9.0
scGoodiesVersion = 1.11.0
scPeripheralsVersion = 1.10.0
scGoodiesVersion = 1.12.0
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,13 @@ class PrintItemMeta : ItemStackMetaProvider<PrintItem>(PrintItem::class.java) {
"isButton" to print.isButton,
"collideWhenOn" to print.collideWhenOn,
"collideWhenOff" to print.collideWhenOff,
"lightWhenOn" to print.lightWhenOn,
"lightWhenOff" to print.lightWhenOff,
"isBeaconBlock" to print.isBeaconBlock,
"isQuiet" to print.isQuiet,
"redstoneLevel" to print.redstoneLevel,
"lightLevel" to print.lightLevel,
"seatPos" to print.seatPos,
"shapesOff" to print.shapesOff.toMap(),
"shapesOn" to print.shapesOn.toMap()
)
Expand Down

0 comments on commit 7e59a36

Please sign in to comment.