Skip to content

Commit

Permalink
Update aspects.py
Browse files Browse the repository at this point in the history
  • Loading branch information
gognjen authored Nov 21, 2016
1 parent 02f3610 commit 229fc34
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion flatlib/aspects.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,8 +91,10 @@ def _aspectDict(obj1, obj2, aspList):
# Check if aspect is within orb
if asp in const.MAJOR_ASPECTS:
# Ignore major aspects out of orb
if outOfSign or (obj1.orb() < orb and obj2.orb() < orb):
if outOfSign:
continue
# if obj1.orb() < orb and obj2.orb() < orb:
# continue
else:
# Ignore minor aspects out of max orb
if MAX_MINOR_ASP_ORB < orb:
Expand Down

0 comments on commit 229fc34

Please sign in to comment.