Skip to content

Commit

Permalink
fix: 🐛 fix rng vs range usage
Browse files Browse the repository at this point in the history
  • Loading branch information
thkruz committed Mar 5, 2023
1 parent 097e50b commit a9917c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/objects/sat.ts
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ export class Sat extends SpaceObject {
public getRange(sensor: Sensor, date: Date = this.time): number {
const rae = this.getRae(sensor, date);

return rae.range;
return rae.rng;
}

/**
Expand Down

0 comments on commit a9917c3

Please sign in to comment.