Fix dolphin bounding-box.

This commit is contained in:
Articdive 2020-08-09 10:18:23 +02:00
parent f1f3885751
commit bf8c632b32
No known key found for this signature in database
GPG Key ID: B069585F0F7D90DE

View File

@ -8,6 +8,6 @@ import net.minestom.server.utils.Position;
public class EntityDolphin extends EntityCreature implements Animal {
public EntityDolphin(Position spawnPosition) {
super(EntityType.DOLPHIN, spawnPosition);
setBoundingBox(0.6f,0.6f,0.9f);
setBoundingBox(0.9f,0.6f,0.9f);
}
}