Skip to content

Commit

Permalink
Forgot to save one file before git commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Dunbaratu committed Jul 17, 2019
1 parent e3b46a4 commit 2b2c50c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/kOS/Suffixed/VesselTarget.cs
Original file line number Diff line number Diff line change
Expand Up @@ -238,6 +238,7 @@ private void InitializeSuffixes()
AddSuffix("MAXTHRUST", new Suffix<ScalarValue>(() => VesselUtils.GetMaxThrust(Vessel)));
AddSuffix("MAXTHRUSTAT", new OneArgsSuffix<ScalarValue, ScalarValue>(GetMaxThrustAt));
AddSuffix("FACING", new Suffix<Direction>(() => VesselUtils.GetFacing(Vessel)));
AddSuffix("BOUNDS", new Suffix<BoundsValue>(() => GetBoundsValue()));
AddSuffix("ANGULARMOMENTUM", new Suffix<Vector>(() => new Vector(Vessel.angularMomentum)));
AddSuffix("ANGULARVEL", new Suffix<Vector>(() => RawAngularVelFromRelative(Vessel.angularVelocity)));
AddSuffix("MASS", new Suffix<ScalarValue>(() => Vessel.GetTotalMass()));
Expand Down Expand Up @@ -267,7 +268,6 @@ private void InitializeSuffixes()
AddSuffix("LATITUDE", new Suffix<ScalarValue>(() => VesselUtils.GetVesselLatitude(Vessel)));
AddSuffix("LONGITUDE", new Suffix<ScalarValue>(() => VesselUtils.GetVesselLongitude(Vessel)));
AddSuffix("ALTITUDE", new Suffix<ScalarValue>(() => Vessel.altitude));
AddSuffix("BOUNDS", new Suffix<BoundsValue>(() => GetBoundsValue()));
AddSuffix("CREW", new NoArgsSuffix<ListValue>(GetCrew));
AddSuffix("CREWCAPACITY", new NoArgsSuffix<ScalarValue>(GetCrewCapacity));
AddSuffix("CONNECTION", new NoArgsSuffix<VesselConnection>(() => new VesselConnection(Vessel, Shared)));
Expand Down

0 comments on commit 2b2c50c

Please sign in to comment.