silphscope 1.4.1 → 1.4.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "silphscope",
3
- "version": "1.4.1",
3
+ "version": "1.4.2",
4
4
  "description": "A firered/leafgreen ROM asset extractor for use in web applications",
5
5
  "main": "main.js",
6
6
  "exports": {
@@ -138,7 +138,10 @@ export async function renderAllBalls(rom, options= {}) {
138
138
  const reader = new RomReader(rom, config);
139
139
 
140
140
  for (const ballName of Object.keys(providedBalls)) {
141
- await renderBall(ballName, providedBalls, reader, rom, { outputDir });
141
+ await renderBall(ballName, providedBalls, reader, rom, {
142
+ outputDir,
143
+ ballParticles,
144
+ });
142
145
  console.log(`Done: ${ballName}`);
143
146
  }
144
147
  }