fix config.setAll()

This commit is contained in:
Araxeus
2023-03-12 02:04:29 +02:00
parent bdfdf83c24
commit 7d93e9f031

View File

@ -67,7 +67,7 @@ module.exports.PluginConfig = class PluginConfig {
};
setAll = (options) => {
this.#config = { ...options };
this.#config = { ...this.#config, ...options };
this.#save();
};