@wwawing/loader 4.1.0-unstable.based-on.3.12.18 → 4.1.0-unstable.based-on.3.12.18.p.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.
@@ -117,7 +117,7 @@ class TextLoader {
117
117
  wwaData.gameSpeedIndex = infra_1.WWAConsts.DEFAULT_SPEED_INDEX;
118
118
  wwaData.permitChangeGameSpeed = true;
119
119
  wwaData.userVar = Array.from({ length: infra_1.WWAConsts.USER_VAR_NUM }).map(() => 0);
120
- wwaData.userNamedVar = [];
120
+ wwaData.userNamedVar = new Map();
121
121
  wwaData.playTime = 0;
122
122
  wwaData.isVisibleStatusEnergy = true;
123
123
  wwaData.isVisibleStatusStrength = true;
@@ -114,7 +114,7 @@ export class TextLoader {
114
114
  wwaData.gameSpeedIndex = WWAConsts.DEFAULT_SPEED_INDEX;
115
115
  wwaData.permitChangeGameSpeed = true;
116
116
  wwaData.userVar = Array.from({ length: WWAConsts.USER_VAR_NUM }).map(() => 0);
117
- wwaData.userNamedVar = [];
117
+ wwaData.userNamedVar = new Map();
118
118
  wwaData.playTime = 0;
119
119
  wwaData.isVisibleStatusEnergy = true;
120
120
  wwaData.isVisibleStatusStrength = true;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wwawing/loader",
3
- "version": "4.1.0-unstable.based-on.3.12.18",
3
+ "version": "4.1.0-unstable.based-on.3.12.18.p.2",
4
4
  "description": "a World Wide Adventure mapdata loader for client-side web applications",
5
5
  "main": "./lib/index.js",
6
6
  "module": "./module/index.js",
@@ -44,10 +44,10 @@
44
44
  },
45
45
  "homepage": "https://github.com/WWAWing/WWALoader#readme",
46
46
  "dependencies": {
47
- "@wwawing/event-emitter": "^4.1.0-unstable.based-on.3.12.18"
47
+ "@wwawing/event-emitter": "^4.1.0-unstable.based-on.3.12.18.p.2"
48
48
  },
49
49
  "devDependencies": {
50
- "@wwawing/common-interface": "^4.1.0-unstable.based-on.3.12.18",
50
+ "@wwawing/common-interface": "^4.1.0-unstable.based-on.3.12.18.p.2",
51
51
  "cross-env": "^7.0.3",
52
52
  "html-loader": "^5.1.0",
53
53
  "html-webpack-plugin": "^5.5.0",
@@ -68,5 +68,5 @@
68
68
  "node": ">=22",
69
69
  "npm": ">=10"
70
70
  },
71
- "gitHead": "c4cb3a8a19596acaea9f5ae8a82c08df7fec4a17"
71
+ "gitHead": "55a800eaaf1d95169d9c5f359240457ca3fd612f"
72
72
  }