Further AAR improvements:
- Make the A330-MRTT drogues HOT=false so you can't crash into them - Add offset for the probe on the A-4F - Correct the deviation due to roll, making it match the piloted aircraft.
This commit is contained in:
parent
e969dbc8f4
commit
5fc821c4c1
1 changed files with 1 additions and 1 deletions
|
@ -156,7 +156,7 @@ var Tanker = {
|
|||
}
|
||||
|
||||
var distance = dt * (me.ktas - me.headwind) * NM2M / 3600;
|
||||
var deviation = me.roll ? 0.5 * dt * 1085.941 * math.tan(me.roll * D2R) / me.ktas : 0;
|
||||
var deviation = me.roll ? dt * 1085.941 * math.tan(me.roll * D2R) / me.ktas : 0;
|
||||
|
||||
if (me.mode == "leg") {
|
||||
if (me.lastmode != "leg") {
|
||||
|
|
Loading…
Add table
Reference in a new issue