public void ShipInformation(ShipInformationList shp, string whereami, ISystem system)
 {
     if (ShipFD.HasChars())        // must have a ship name - there have been load games without it.
     {
         shp.LoadGame(ShipId, Ship, ShipFD, ShipName, ShipIdent, FuelLevel, FuelCapacity);
     }
 }
 public void ShipInformation(ShipInformationList shp, string whereami, ISystem system)
 {
     if (InShipSRVOrFighter)        // only call if in these types from 4.0 we can be on foot or in a taxi
     {
         shp.LoadGame(ShipId, Ship, ShipFD, ShipName, ShipIdent, FuelLevel, FuelCapacity);
     }
 }
Пример #3
0
 public void ShipInformation(ShipInformationList shp, DB.SQLiteConnectionUser conn)
 {
     shp.LoadGame(ShipId, Ship, ShipFD, ShipName, ShipIdent, FuelLevel, FuelCapacity);
 }