File tree 2 files changed +4
-3
lines changed
src/main/scala/com/github/unchama/seichiassist/util
2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 34
34
35
35
set -o pipefail
36
36
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 "
39
39
40
40
declare -r latest_213=" 2.13.11"
41
41
declare -r latest_212=" 2.12.18"
@@ -662,3 +662,4 @@ execRunner "$java_cmd" \
662
662
-jar " $sbt_jar " \
663
663
" ${sbt_commands[@]} " \
664
664
" ${residual_args[@]} "
665
+
Original file line number Diff line number Diff line change @@ -155,7 +155,7 @@ object BreakUtil {
155
155
val materialType = targetBlock.getType
156
156
val isQuartzBlockOrQuartzStairs =
157
157
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
159
159
val isMadeFromQuartz = isQuartzBlockOrQuartzStairs || isQuartzSlab
160
160
val canBreakBlockMadeFromQuartz = ! isMadeFromQuartz && SeichiAssist
161
161
.instance
You can’t perform that action at this time.
0 commit comments