Fixed missing parameter.

This commit is contained in:
Krafpy
2022-08-21 21:27:28 +02:00
parent ff121b8074
commit 05b02e217a
2 changed files with 2 additions and 0 deletions

View File

@@ -69,6 +69,7 @@ export function completeBodytoUnorderedData(body) {
return {
name: body.name,
radius: body.radius,
atmosphereAlt: body.atmosphereAlt,
mass: body.mass,
stdGravParam: body.stdGravParam,
soi: body.soi,

View File

@@ -88,6 +88,7 @@ export function completeBodytoUnorderedData(body: IOrbitingBody): IOrbitingBody_
return {
name: body.name,
radius: body.radius,
atmosphereAlt: body.atmosphereAlt,
mass: body.mass,
stdGravParam: body.stdGravParam,
soi: body.soi,