Skip to content

Commit

Permalink
QRP Mult
Browse files Browse the repository at this point in the history
mbridak committed Dec 3, 2023
1 parent 34ed60a commit fe8b737
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion not1mm/plugins/winter_field_day.py
Original file line number Diff line number Diff line change
@@ -142,7 +142,10 @@ def calc_score(self):
"""Return calculated score"""
_points = get_points(self)
_mults = show_mults(self)
return _points * _mults
_power_mult = 1
if self.contest_settings.get("PowerCategory", "") == "QRP":
_power_mult = 2
return _points * _power_mult * _mults


def adif(self):

0 comments on commit fe8b737

Please sign in to comment.