From 7c7820005721a3dc222d25e43688df797ca04a2e Mon Sep 17 00:00:00 2001 From: Dawson Hessler Date: Thu, 1 Sep 2022 08:22:32 -0400 Subject: [PATCH] Fixing entity bounds --- .../java/cc/funkemunky/api/utils/world/EntityData.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/AtlasParent/Atlas/src/main/java/cc/funkemunky/api/utils/world/EntityData.java b/AtlasParent/Atlas/src/main/java/cc/funkemunky/api/utils/world/EntityData.java index 6b2949e6..4af52f62 100644 --- a/AtlasParent/Atlas/src/main/java/cc/funkemunky/api/utils/world/EntityData.java +++ b/AtlasParent/Atlas/src/main/java/cc/funkemunky/api/utils/world/EntityData.java @@ -62,15 +62,15 @@ public static CollisionBox getEntityBox(KLocation location, Entity entity) { entityBounds.put(EntityType.WITCH, new SimpleCollisionBox(new Vector(), 0.62f, 1.95f)); entityBounds.put(EntityType.BLAZE, new SimpleCollisionBox(new Vector(), 0.62f, 1.8f)); entityBounds.put(EntityType.PLAYER, new SimpleCollisionBox(new Vector(), 0.6f, 1.8f)); - entityBounds.put(EntityType.VILLAGER, new SimpleCollisionBox(new Vector(), 0.62f, 1.8f)); - entityBounds.put(EntityType.CREEPER, new SimpleCollisionBox(new Vector(), 0.62f, 1.8f)); + entityBounds.put(EntityType.VILLAGER, new SimpleCollisionBox(new Vector(), 0.6f, 1.8f)); + entityBounds.put(EntityType.CREEPER, new SimpleCollisionBox(new Vector(), 0.6f, 1.8f)); entityBounds.put(EntityType.GIANT, new SimpleCollisionBox(new Vector(), 3.6f, 10.8f)); - entityBounds.put(EntityType.SKELETON, new SimpleCollisionBox(new Vector(), 0.62f, 1.8f)); - entityBounds.put(EntityType.ZOMBIE, new SimpleCollisionBox(new Vector(), 0.62f, 1.8f)); + entityBounds.put(EntityType.SKELETON, new SimpleCollisionBox(new Vector(), 0.6f, 1.95F)); + entityBounds.put(EntityType.ZOMBIE, new SimpleCollisionBox(new Vector(), 0.6f, 1.95F)); entityBounds.put(EntityType.SNOWMAN, new SimpleCollisionBox(new Vector(), 0.7f, 1.9f)); entityBounds.put(EntityType.HORSE, new SimpleCollisionBox(new Vector(), 1.4f, 1.6f)); entityBounds.put(EntityType.ENDER_DRAGON, new SimpleCollisionBox(new Vector(), 3f, 1.5f)); - entityBounds.put(EntityType.ENDERMAN, new SimpleCollisionBox(new Vector(), 0.62f, 2.9f)); + entityBounds.put(EntityType.ENDERMAN, new SimpleCollisionBox(new Vector(), 0.6f, 2.9f)); entityBounds.put(EntityType.CHICKEN, new SimpleCollisionBox(new Vector(), 0.4f, 0.7f)); entityBounds.put(EntityType.OCELOT, new SimpleCollisionBox(new Vector(), 0.62f, 0.7f)); entityBounds.put(EntityType.SPIDER, new SimpleCollisionBox(new Vector(), 1.4f, 0.9f));