Hm... Speaking of hoys. I'm looking at RS_CalcSpeedScalar in SEA_AI\AIShip.c and there is this condition:
The Hoy is not exactly square rigged, but her closest point is 0.22 and so she has no troubles backing astern
And most luggers seem to have the closest point 0.225 so I guess they are considered square rigged as well.
Code:
if (fClosestPoint > 0.2)
fTempSpeedZ = Bring2Range(RS_BACKWIND, 0.0, 0.0, fClosestPoint - RS_CP_OFFSET, fOffWind); //allow backwards travel
else
fTempSpeedZ = 0.0; //if not square rigged, can't be pushed back
The Hoy is not exactly square rigged, but her closest point is 0.22 and so she has no troubles backing astern
And most luggers seem to have the closest point 0.225 so I guess they are considered square rigged as well.
Last edited: