Mobs with feather falling 4 boots can now properly walk on clouds

This commit is contained in:
Sollace 2024-09-25 19:42:10 +01:00
parent 8779c5f1a6
commit 122781ea43
No known key found for this signature in database
GPG key ID: E52FACE7B5C773DB

View file

@ -22,7 +22,7 @@ public interface EquineContext {
}
default boolean collidesWithClouds() {
return getCompositeRace().canInteractWithClouds();
return getCompositeRace().canInteractWithClouds() || getCloudWalkingStrength() >= 1;
}
default boolean hasFeatherTouch() {