fix: boat plr height & sneak height (#1459)

This commit is contained in:
Sylvessa
2026-04-02 17:16:31 -05:00
committed by GitHub
parent e4c08b8414
commit 8bf0343544
4 changed files with 32 additions and 3 deletions

View File

@@ -87,7 +87,7 @@ Boat::Boat(Level *level, double x, double y, double z) : Entity( level )
double Boat::getRideHeight()
{
return heightOffset;
return heightOffset - 0.4f;
}
bool Boat::hurt(DamageSource *source, float hurtDamage)