Skip to content

Commit

Permalink
MOL points also hidden when not playing with points shown
Browse files Browse the repository at this point in the history
  • Loading branch information
azabicki committed Feb 10, 2024
1 parent b64c4b1 commit feb6885
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doompy/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -496,7 +496,7 @@ def calc_MOLs(p):
p_MOL = 0
for m in range(MOLs['n'][p]):
# calculate, if MOL is selected
if MOLs['played'][p][m] is not None:
if MOLs['played'][p][m] is not None and points_onoff is 'on':
# calculate points
p_MOL_m = rules_mol.calc_MOL_points(p, m)

Expand Down

0 comments on commit feb6885

Please sign in to comment.