File tree Expand file tree Collapse file tree 3 files changed +7
-4
lines changed
src/main/java/net/wurstclient/mixin Expand file tree Collapse file tree 3 files changed +7
-4
lines changed Original file line number Diff line number Diff line change 1212- [ 1.21.1 - Not Updated] ( https://github.com/cev-api/Wurst7-CevAPI/tree/1.21.1 )
1313- [ 1.21.8 - Not Updated] ( https://github.com/cev-api/Wurst7-CevAPI/tree/1.21.8 )
1414- [ 1.21.10 - Not Updated] ( https://github.com/cev-api/Wurst7-CevAPI/tree/1.21.10 )
15- - [ 1.21.11 - Recommended] ( https://github.com/cev-api/Wurst7-CevAPI/tree/master )
16- - [ 26.1 - Latest] ( https://github.com/cev-api/Wurst7-CevAPI/tree/26.1 )
15+ - [ 1.21.11 - Recommended] ( https://github.com/cev-api/Wurst7-CevAPI/tree/1.21.11 )
16+ - [ 26.1 - Latest] ( https://github.com/cev-api/Wurst7-CevAPI/tree/master )
1717
1818
1919### Download
@@ -1220,6 +1220,7 @@ Examples:
12201220- Added no slowdown for water
12211221 - Added a toggle to allow swimming
12221222- Added no slowdown for vines (cannot climb)
1223+ - Added no slowdown for sculk vines on the floor
12231224
12241225### TrueSight Improved
12251226- Added customisable glow ESP for invisible entities
Original file line number Diff line number Diff line change @@ -45,6 +45,7 @@ private boolean isVineBlock(Block block)
4545 || block == Blocks .CAVE_VINES_PLANT || block == Blocks .WEEPING_VINES
4646 || block == Blocks .WEEPING_VINES_PLANT
4747 || block == Blocks .TWISTING_VINES
48- || block == Blocks .TWISTING_VINES_PLANT ;
48+ || block == Blocks .TWISTING_VINES_PLANT
49+ || block == Blocks .SCULK_VEIN ;
4950 }
5051}
Original file line number Diff line number Diff line change @@ -98,6 +98,7 @@ private boolean isVineState(BlockState state)
9898 || state .is (Blocks .WEEPING_VINES )
9999 || state .is (Blocks .WEEPING_VINES_PLANT )
100100 || state .is (Blocks .TWISTING_VINES )
101- || state .is (Blocks .TWISTING_VINES_PLANT );
101+ || state .is (Blocks .TWISTING_VINES_PLANT )
102+ || state .is (Blocks .SCULK_VEIN );
102103 }
103104}
You can’t perform that action at this time.
0 commit comments