fix: boat plr height & sneak height

This commit is contained in:
sylvessa 2026-04-02 01:17:01 -05:00
parent c4c4c08b96
commit 617e25fcd3
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)