-
Notifications
You must be signed in to change notification settings - Fork 100
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Improved interaction with passable leaves
isLeavesPassable = false & vanillaLeavesCollision = false - default dynamic trees behavior, slightly sink in leaves and get slowed down. isLeavesPassable = true & vanillaLeavesCollision = false - Pass through leaves but still get slowed down by them isLeavesPassable = false & vanillaLeavesCollision = true - Vanilla-like leaves, blocks are solid and you can run on them but still break. isLeavesPassable = true & vanillaLeavesCollision = true - Completely transparent leaves, you can run through them and they don't catch your fall
- Loading branch information
1 parent
7a6631f
commit 6d58ac8
Showing
4 changed files
with
26 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
modName=DynamicTrees | ||
modId=dynamictrees | ||
modVersion=1.3.5 | ||
modVersion=1.3.6 | ||
|
||
group=com.ferreusveritas.dynamictrees | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 5 additions & 0 deletions
5
src/main/resources/data/dynamictrees/tags/entity_types/can_pass_through_leaves.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"values": [ | ||
"minecraft:bee" | ||
] | ||
} |