isaacscript-common 1.2.184 → 1.2.185
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/upgradeMod.lua +3 -0
- package/package.json +1 -1
package/dist/upgradeMod.lua
CHANGED
|
@@ -84,6 +84,8 @@ local ____disableInputs = require("features.disableInputs")
|
|
|
84
84
|
local disableInputsInit = ____disableInputs.disableInputsInit
|
|
85
85
|
local ____disableSound = require("features.disableSound")
|
|
86
86
|
local disableSoundsInit = ____disableSound.disableSoundsInit
|
|
87
|
+
local ____fastReset = require("features.fastReset")
|
|
88
|
+
local fastResetInit = ____fastReset.fastResetInit
|
|
87
89
|
local ____forgottenSwitch = require("features.forgottenSwitch")
|
|
88
90
|
local forgottenSwitchInit = ____forgottenSwitch.forgottenSwitchInit
|
|
89
91
|
local ____getCollectibleItemPoolType = require("features.getCollectibleItemPoolType")
|
|
@@ -157,6 +159,7 @@ function initFeatures(self, mod)
|
|
|
157
159
|
isPonyActiveInit(nil, mod)
|
|
158
160
|
playerInventoryInit(nil, mod)
|
|
159
161
|
taintedLazarusPlayersInit(nil, mod)
|
|
162
|
+
fastResetInit(nil, mod)
|
|
160
163
|
end
|
|
161
164
|
function ____exports.upgradeMod(self, modVanilla, verbose)
|
|
162
165
|
if verbose == nil then
|