diff --git a/src/config.ts b/src/config.ts index 7ad653cd..c12e7f67 100644 --- a/src/config.ts +++ b/src/config.ts @@ -48,7 +48,7 @@ class SBMap extends Map { // Import all entries if they were given if (entries !== undefined) { for (const item of entries) { - this.set(item[0], item[1]) + super.set(item[0], item[1]) } } }