Skip to content

Commit

Permalink
fix string.Format
Browse files Browse the repository at this point in the history
  • Loading branch information
Happyrobot33 committed Aug 8, 2024
1 parent 0908002 commit f21c18c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ public FlightMode flightMode
else
{
flightMode = FlightMode.Off;
Logger.Log(string.format(FLIGHTCANTBESETTEMPLATE, "Auto"), this);
Logger.Log(string.Format(FLIGHTCANTBESETTEMPLATE, "Auto"), this);
}
break;
case FlightMode.On:
Expand All @@ -141,7 +141,7 @@ public FlightMode flightMode
else
{
flightMode = FlightMode.Off;
Logger.Log(string.format(FLIGHTCANTBESETTEMPLATE, "On"), this);
Logger.Log(string.Format(FLIGHTCANTBESETTEMPLATE, "On"), this);
}
break;
default:
Expand Down

0 comments on commit f21c18c

Please sign in to comment.