From c63a5625d3176431c96df9631ad37e78443e43dd Mon Sep 17 00:00:00 2001 From: Anton Tarasenko Date: Sun, 4 Sep 2022 04:52:53 +0700 Subject: [PATCH] Fix config variables not being used for `DoshSpamFix` feature --- sources/FixDoshSpam/FixDoshSpam.uc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/sources/FixDoshSpam/FixDoshSpam.uc b/sources/FixDoshSpam/FixDoshSpam.uc index 484f41b..29e1b45 100644 --- a/sources/FixDoshSpam/FixDoshSpam.uc +++ b/sources/FixDoshSpam/FixDoshSpam.uc @@ -21,10 +21,10 @@ class FixDoshSpam extends FeatureConfig perobjectconfig config(AcediaFixes); -var public /*config*/ float doshPerSecondLimitMax; -var public /*config*/ float doshPerSecondLimitMin; -var public /*config*/ int criticalDoshAmount; -var public /*config*/ float checkInterval; +var public config float doshPerSecondLimitMax; +var public config float doshPerSecondLimitMin; +var public config int criticalDoshAmount; +var public config float checkInterval; protected function HashTable ToData() {