From 0403ace0469b8343b3be7e1fc35e456cf520818b Mon Sep 17 00:00:00 2001 From: Holly Date: Sun, 5 Nov 2023 13:53:45 +0000 Subject: [PATCH] zero the fall distance --- server/entities/EntityLiving.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/entities/EntityLiving.ts b/server/entities/EntityLiving.ts index 29995a5..47442f6 100644 --- a/server/entities/EntityLiving.ts +++ b/server/entities/EntityLiving.ts @@ -24,7 +24,7 @@ export class EntityLiving extends Entity { this.timeInWater = 0; this.headHeight = 1.62; - this.fallDistance = Number.MIN_VALUE; + this.fallDistance = 0; this.lastHealth = this.health; }