isaacscript-common 1.0.526 → 1.0.527
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/dist/functions/seeds.d.ts +2 -0
- package/dist/functions/seeds.lua +8 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.lua +8 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -38,6 +38,7 @@ export * from "./functions/position";
|
|
|
38
38
|
export * from "./functions/random";
|
|
39
39
|
export * from "./functions/revive";
|
|
40
40
|
export * from "./functions/rooms";
|
|
41
|
+
export * from "./functions/seeds";
|
|
41
42
|
export * from "./functions/spawnCollectible";
|
|
42
43
|
export * from "./functions/sprite";
|
|
43
44
|
export * from "./functions/stage";
|
package/dist/index.lua
CHANGED
|
@@ -310,6 +310,14 @@ do
|
|
|
310
310
|
end
|
|
311
311
|
end
|
|
312
312
|
end
|
|
313
|
+
do
|
|
314
|
+
local ____export = require("functions.seeds")
|
|
315
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
316
|
+
if ____exportKey ~= "default" then
|
|
317
|
+
____exports[____exportKey] = ____exportValue
|
|
318
|
+
end
|
|
319
|
+
end
|
|
320
|
+
end
|
|
313
321
|
do
|
|
314
322
|
local ____export = require("functions.spawnCollectible")
|
|
315
323
|
for ____exportKey, ____exportValue in pairs(____export) do
|