From 7d93e9f031407be72ffcf76e57c112c9f5f92073 Mon Sep 17 00:00:00 2001 From: Araxeus <78568641+Araxeus@users.noreply.github.com> Date: Sun, 12 Mar 2023 02:04:29 +0200 Subject: [PATCH] fix `config.setAll()` --- config/dynamic.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/dynamic.js b/config/dynamic.js index 2e995f21..713379e6 100644 --- a/config/dynamic.js +++ b/config/dynamic.js @@ -67,7 +67,7 @@ module.exports.PluginConfig = class PluginConfig { }; setAll = (options) => { - this.#config = { ...options }; + this.#config = { ...this.#config, ...options }; this.#save(); };