isaacscript-common 1.2.183 → 1.2.184
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/index.d.ts +1 -0
- package/dist/index.lua +7 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -16,6 +16,7 @@ export { deployJSONRoom, deployRandomJSONRoom, emptyRoom, } from "./features/dep
|
|
|
16
16
|
export { disableAllInputs, disableAllInputsExceptFor, disableMovementInputs, disableShootingInputs, enableAllInputs, enableAllInputsExceptFor, } from "./features/disableInputs";
|
|
17
17
|
export { disableAllSound, enableAllSound } from "./features/disableSound";
|
|
18
18
|
export { addConsoleCommand, enableExtraConsoleCommands, removeConsoleCommand, } from "./features/extraConsoleCommands/init";
|
|
19
|
+
export { disableFastReset, enableFastReset } from "./features/fastReset";
|
|
19
20
|
export { forgottenSwitch } from "./features/forgottenSwitch";
|
|
20
21
|
export { getCollectibleItemPoolType } from "./features/getCollectibleItemPoolType";
|
|
21
22
|
export * from "./features/isPonyActive";
|
package/dist/index.lua
CHANGED
|
@@ -150,6 +150,13 @@ do
|
|
|
150
150
|
____exports.enableExtraConsoleCommands = enableExtraConsoleCommands
|
|
151
151
|
____exports.removeConsoleCommand = removeConsoleCommand
|
|
152
152
|
end
|
|
153
|
+
do
|
|
154
|
+
local ____fastReset = require("features.fastReset")
|
|
155
|
+
local disableFastReset = ____fastReset.disableFastReset
|
|
156
|
+
local enableFastReset = ____fastReset.enableFastReset
|
|
157
|
+
____exports.disableFastReset = disableFastReset
|
|
158
|
+
____exports.enableFastReset = enableFastReset
|
|
159
|
+
end
|
|
153
160
|
do
|
|
154
161
|
local ____forgottenSwitch = require("features.forgottenSwitch")
|
|
155
162
|
local forgottenSwitch = ____forgottenSwitch.forgottenSwitch
|