Skip to content

Commit 98454f3

Browse files
fix: #90 use shift check instead of crouching check
1 parent ac4c010 commit 98454f3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

common/src/main/java/pro/mikey/justhammers/HammerItem.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ public void causeAoe(Level level, BlockPos pos, BlockState state, ItemStack hamm
139139
return;
140140
}
141141

142-
if (livingEntity.isCrouching()) {
142+
if (livingEntity.isShiftKeyDown()) {
143143
return;
144144
}
145145

0 commit comments

Comments
 (0)