Skip to content

Commit

Permalink
Bufix: pass settings to from Radix to AspectCalculator
Browse files Browse the repository at this point in the history
  • Loading branch information
CI Bot committed Mar 11, 2024
1 parent 3911faa commit b3cf0cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion project/src/radix.ts
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,7 @@ class Radix {
aspects(customAspects?: FormedAspect[] | null): Radix {
const aspectsList = customAspects != null && Array.isArray(customAspects)
? customAspects
: new AspectCalculator(this.toPoints).radix(this.data.planets)
: new AspectCalculator(this.toPoints, this.settings).radix(this.data.planets)

const universe = this.universe
const wrapper = getEmptyWrapper(universe, this.paper.root.id + '-' + this.settings.ID_ASPECTS, this.paper.root.id)
Expand Down

0 comments on commit b3cf0cd

Please sign in to comment.