implement la's TU22 patch file

This commit is contained in:
piebot
2026-03-13 00:56:59 +03:00
parent f255035afd
commit beec56d3be
22 changed files with 87 additions and 26 deletions
+7 -2
View File
@@ -1598,8 +1598,13 @@ void Entity::rideTick()
// jeb: This caused the crosshair to "drift" while riding horses. For now I've just disabled it,
// because I can't figure out what it's needed for. Riding boats and minecarts seem unaffected...
// yRot += yra;
// xRot += xra;
//
// 3UR: re-enabled this for TU20 but only for rideable minecarts
if (riding->instanceof(eTYPE_MINECART_RIDEABLE))
{
yRot += yra;
xRot += xra;
}
}
void Entity::positionRider()