isaacscript-common 1.2.84 → 1.2.85
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
|
@@ -79,6 +79,8 @@ local ____forgottenSwitch = require("features.forgottenSwitch")
|
|
|
79
79
|
local forgottenSwitchInit = ____forgottenSwitch.forgottenSwitchInit
|
|
80
80
|
local ____getCollectibleItemPoolType = require("features.getCollectibleItemPoolType")
|
|
81
81
|
local getCollectibleItemPoolTypeInit = ____getCollectibleItemPoolType.getCollectibleItemPoolTypeInit
|
|
82
|
+
local ____isPonyActive = require("features.isPonyActive")
|
|
83
|
+
local isPonyActiveInit = ____isPonyActive.isPonyActiveInit
|
|
82
84
|
local ____preventCollectibleRotate = require("features.preventCollectibleRotate")
|
|
83
85
|
local preventCollectibleRotateInit = ____preventCollectibleRotate.preventCollectibleRotateInit
|
|
84
86
|
local ____runInNFrames = require("features.runInNFrames")
|
|
@@ -137,6 +139,7 @@ function initFeatures(self, mod)
|
|
|
137
139
|
preventCollectibleRotateInit(nil, mod)
|
|
138
140
|
runInNFramesInit(nil, mod)
|
|
139
141
|
sirenHelpersInit(nil, mod)
|
|
142
|
+
isPonyActiveInit(nil, mod)
|
|
140
143
|
end
|
|
141
144
|
function ____exports.upgradeMod(self, modVanilla, verbose)
|
|
142
145
|
if verbose == nil then
|