Skip to content

Commit

Permalink
resolve error
Browse files Browse the repository at this point in the history
  • Loading branch information
outductor committed Aug 28, 2023
1 parent 0523080 commit 48b0217
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions sbt
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@

set -o pipefail

declare -r sbt_release_version="1.9.3"
declare -r sbt_unreleased_version="1.9.3"
declare -r sbt_release_version="1.9.4"
declare -r sbt_unreleased_version="1.9.4"

declare -r latest_213="2.13.11"
declare -r latest_212="2.12.18"
Expand Down Expand Up @@ -662,3 +662,4 @@ execRunner "$java_cmd" \
-jar "$sbt_jar" \
"${sbt_commands[@]}" \
"${residual_args[@]}"

Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ object BreakUtil {
val materialType = targetBlock.getType
val isQuartzBlockOrQuartzStairs =
materialType == Material.QUARTZ_BLOCK || materialType == Material.QUARTZ_STAIRS
val isQuartzSlab = materialType == Material.STEP && targetBlock.getData == 7.toByte
val isQuartzSlab = materialType == Material.STONE_SLAB && targetBlock.getData == 7.toByte
val isMadeFromQuartz = isQuartzBlockOrQuartzStairs || isQuartzSlab
val canBreakBlockMadeFromQuartz = !isMadeFromQuartz && SeichiAssist
.instance
Expand Down

0 comments on commit 48b0217

Please sign in to comment.