Skip to content

Commit 48b0217

Browse files
committed
resolve error
1 parent 0523080 commit 48b0217

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

sbt

+3-2
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@
3434

3535
set -o pipefail
3636

37-
declare -r sbt_release_version="1.9.3"
38-
declare -r sbt_unreleased_version="1.9.3"
37+
declare -r sbt_release_version="1.9.4"
38+
declare -r sbt_unreleased_version="1.9.4"
3939

4040
declare -r latest_213="2.13.11"
4141
declare -r latest_212="2.12.18"
@@ -662,3 +662,4 @@ execRunner "$java_cmd" \
662662
-jar "$sbt_jar" \
663663
"${sbt_commands[@]}" \
664664
"${residual_args[@]}"
665+

src/main/scala/com/github/unchama/seichiassist/util/BreakUtil.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ object BreakUtil {
155155
val materialType = targetBlock.getType
156156
val isQuartzBlockOrQuartzStairs =
157157
materialType == Material.QUARTZ_BLOCK || materialType == Material.QUARTZ_STAIRS
158-
val isQuartzSlab = materialType == Material.STEP && targetBlock.getData == 7.toByte
158+
val isQuartzSlab = materialType == Material.STONE_SLAB && targetBlock.getData == 7.toByte
159159
val isMadeFromQuartz = isQuartzBlockOrQuartzStairs || isQuartzSlab
160160
val canBreakBlockMadeFromQuartz = !isMadeFromQuartz && SeichiAssist
161161
.instance

0 commit comments

Comments
 (0)