isaacscript-common 8.0.0 → 8.0.1
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.
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"initFeatures.d.ts","sourceRoot":"","sources":["../src/initFeatures.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,uBAAuB,CAAC;
|
|
1
|
+
{"version":3,"file":"initFeatures.d.ts","sourceRoot":"","sources":["../src/initFeatures.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,uBAAuB,CAAC;AA+BpD,wBAAgB,YAAY,CAAC,GAAG,EAAE,WAAW,GAAG,IAAI,CAGnD"}
|
package/dist/initFeatures.lua
CHANGED
|
@@ -24,6 +24,8 @@ local ____fadeInRemover = require("features.fadeInRemover")
|
|
|
24
24
|
local fadeInRemoverInit = ____fadeInRemover.fadeInRemoverInit
|
|
25
25
|
local ____fastReset = require("features.fastReset")
|
|
26
26
|
local fastResetInit = ____fastReset.fastResetInit
|
|
27
|
+
local ____firstLast = require("features.firstLast")
|
|
28
|
+
local firstLastInit = ____firstLast.firstLastInit
|
|
27
29
|
local ____forgottenSwitch = require("features.forgottenSwitch")
|
|
28
30
|
local forgottenSwitchInit = ____forgottenSwitch.forgottenSwitchInit
|
|
29
31
|
local ____pause = require("features.pause")
|
|
@@ -71,6 +73,7 @@ function initFeaturesMinor(self, mod)
|
|
|
71
73
|
disableInputsInit(nil, mod)
|
|
72
74
|
fadeInRemoverInit(nil, mod)
|
|
73
75
|
fastResetInit(nil, mod)
|
|
76
|
+
firstLastInit(nil, mod)
|
|
74
77
|
forgottenSwitchInit(nil, mod)
|
|
75
78
|
collectibleItemPoolTypeInit(nil, mod)
|
|
76
79
|
pauseInit(nil, mod)
|
package/package.json
CHANGED
package/src/initFeatures.ts
CHANGED
|
@@ -11,6 +11,7 @@ import { disableAllSoundInit } from "./features/disableAllSound";
|
|
|
11
11
|
import { disableInputsInit } from "./features/disableInputs";
|
|
12
12
|
import { fadeInRemoverInit } from "./features/fadeInRemover";
|
|
13
13
|
import { fastResetInit } from "./features/fastReset";
|
|
14
|
+
import { firstLastInit } from "./features/firstLast";
|
|
14
15
|
import { forgottenSwitchInit } from "./features/forgottenSwitch";
|
|
15
16
|
import { pauseInit } from "./features/pause";
|
|
16
17
|
import { persistentEntitiesInit } from "./features/persistentEntities";
|
|
@@ -49,6 +50,7 @@ function initFeaturesMinor(mod: ModUpgraded) {
|
|
|
49
50
|
disableInputsInit(mod);
|
|
50
51
|
fadeInRemoverInit(mod);
|
|
51
52
|
fastResetInit(mod);
|
|
53
|
+
firstLastInit(mod);
|
|
52
54
|
forgottenSwitchInit(mod);
|
|
53
55
|
collectibleItemPoolTypeInit(mod);
|
|
54
56
|
pauseInit(mod);
|