We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 84dac08 commit 23cf397Copy full SHA for 23cf397
core/src/main/java/org/geysermc/geyser/entity/type/living/animal/TurtleEntity.java
@@ -55,6 +55,17 @@ protected ItemTag getFoodTag() {
55
return ItemTag.TURTLE_FOOD;
56
}
57
58
+ @Override
59
+ protected float getAdultSize() {
60
+ return super.getAdultSize() * 0.7f;
61
+ }
62
+
63
64
+ protected float getBabySize() {
65
+ // 0.3f is Java scale, plus Bedrock difference
66
+ return 0.3f * 0.5f;
67
68
69
@Override
70
public boolean canBeLeashed() {
71
return false;
0 commit comments