diff --git a/casr-logbook.cabal b/casr-logbook.cabal
--- a/casr-logbook.cabal
+++ b/casr-logbook.cabal
@@ -1,5 +1,5 @@
 name:               casr-logbook
-version:            0.6.1
+version:            0.6.2
 license:            OtherLicense
 license-file:       LICENSE
 author:             Tony Morris <ʇǝu˙sıɹɹoɯʇ@ןןǝʞsɐɥ>
diff --git a/changelog b/changelog
--- a/changelog
+++ b/changelog
@@ -1,3 +1,7 @@
+0.6.2
+
+* Update to instruction for flight time report.
+
 0.6.1
 
 * Update to instruction for flight time report.
diff --git a/src/Data/Aviation/Casr/Logbook/Types/AircraftFlight.hs b/src/Data/Aviation/Casr/Logbook/Types/AircraftFlight.hs
--- a/src/Data/Aviation/Casr/Logbook/Types/AircraftFlight.hs
+++ b/src/Data/Aviation/Casr/Logbook/Types/AircraftFlight.hs
@@ -11,6 +11,7 @@
 , commandonlyflight
 , noif_commandonlyflight
 , instructionflight
+, noif_instructionflight
 ) where
 
 import Control.Category((.))
@@ -137,6 +138,20 @@
     []
     i
 
+noif_commandonlyflight ::
+  String
+  -> Aircraft
+  -> DayNight
+  -> FlightPath
+  -> AircraftFlight
+noif_commandonlyflight n a t p =
+  commandonlyflight
+    n
+    a
+    t
+    p
+    zerotimeamount
+
 instructionflight ::
   String
   -> Aircraft
@@ -155,16 +170,19 @@
     []
     i
 
-noif_commandonlyflight ::
+noif_instructionflight ::
   String
   -> Aircraft
+  -> Instruction
   -> DayNight
   -> FlightPath
   -> AircraftFlight
-noif_commandonlyflight n a t p =
-  commandonlyflight
+noif_instructionflight n a s t p =
+  AircraftFlight
     n
     a
+    (InCommandInstructing s)
     t
     p
+    []
     zerotimeamount
