worldstate-emitter 2.0.1 → 2.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/index.js +1 -1
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -12,7 +12,7 @@ export default class WorldstateEmitter extends EventEmitter {
12
12
  #twitter;
13
13
  #rss;
14
14
 
15
- static async make({ locale = 'en' } = { locale: 'en' }) {
15
+ static async make({ locale } = { locale: undefined }) {
16
16
  const emitter = new WorldstateEmitter({ locale });
17
17
  await emitter.#init();
18
18
  return emitter;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "worldstate-emitter",
3
- "version": "2.0.1",
3
+ "version": "2.0.2",
4
4
  "description": "Event emitter for worldstate & other warframe events",
5
5
  "main": "index.js",
6
6
  "scripts": {