From ab7ba194fd8015fde20c15fc3659bfc18716c496 Mon Sep 17 00:00:00 2001 From: UnknownShadow200 Date: Thu, 21 Sep 2017 10:57:05 +1000 Subject: [PATCH] Fix very rare case when you land on edge of block and don't die from fall damage. --- MCGalaxy/util/Math/AABB.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MCGalaxy/util/Math/AABB.cs b/MCGalaxy/util/Math/AABB.cs index 846321b4e..94be79a60 100644 --- a/MCGalaxy/util/Math/AABB.cs +++ b/MCGalaxy/util/Math/AABB.cs @@ -128,7 +128,7 @@ namespace MCGalaxy.Maths { if (model.CaselessEq("skeleton")) return new Vec3S32(16, 60, 16); if (model.CaselessEq("spider")) return new Vec3S32(30, 24, 30); - return new Vec3S32(16, 56, 16); // default humanoid size + return new Vec3S32(18, 56, 18); // default humanoid size } public static bool IntersectsSolidBlocks(AABB bb, Level lvl) {