From fe8b737b4f54c2a1a093c0ee6ccf0e9cddce72f1 Mon Sep 17 00:00:00 2001 From: mbridak Date: Sun, 3 Dec 2023 15:57:15 -0800 Subject: [PATCH] QRP Mult --- not1mm/plugins/winter_field_day.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/not1mm/plugins/winter_field_day.py b/not1mm/plugins/winter_field_day.py index 9664c677..9b378d67 100644 --- a/not1mm/plugins/winter_field_day.py +++ b/not1mm/plugins/winter_field_day.py @@ -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):