1
0
Fork 0

Fix a copy-paste-bug in a Nasal error

This commit is contained in:
James Turner 2019-10-20 13:08:41 +01:00
parent 26b9cce6a3
commit 68a72f22f2

View file

@ -2942,7 +2942,7 @@ static naRef f_flightplan_pathGeod(naContext c, naRef me, int argc, naRef* args)
{
FlightPlan* fp = flightplanGhost(me);
if (!fp) {
naRuntimeError(c, "flightplan.clone called on non-flightplan object");
naRuntimeError(c, "flightplan.pathGeod called on non-flightplan object");
}
if ((argc < 1) || !naIsNum(args[0])) {