added allow_further_rules option to automod rules
This essentially makes it so you can run multiple rules at once
This commit is contained in:
parent
0ec5e37286
commit
eb61b5a653
3 changed files with 8 additions and 2 deletions
|
@ -73,6 +73,10 @@ const configPreprocessor: ConfigPreprocessorFn<AutomodPluginType> = options => {
|
|||
rule["enabled"] = true;
|
||||
}
|
||||
|
||||
if (rule["allow_further_rules"] == null) {
|
||||
rule["allow_further_rules"] = false;
|
||||
}
|
||||
|
||||
if (rule["affects_bots"] == null) {
|
||||
rule["affects_bots"] = false;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue