isaacscript-common 1.2.175 → 1.2.176
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 +5 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -13,6 +13,7 @@ export * from "./enums/PillEffectClass";
|
|
|
13
13
|
export * from "./enums/PillEffectType";
|
|
14
14
|
export * from "./enums/PocketItemType";
|
|
15
15
|
export * from "./enums/SerializationType";
|
|
16
|
+
export { isCollectiblePreviouslySeen } from "./features/collectiblesSeen";
|
|
16
17
|
export { deployJSONRoom, deployRandomJSONRoom, emptyRoom, } from "./features/deployJSONRoom";
|
|
17
18
|
export { disableAllInputs, disableAllInputsExceptFor, disableMovementInputs, disableShootingInputs, enableAllInputs, enableAllInputsExceptFor, } from "./features/disableInputs";
|
|
18
19
|
export { disableAllSound, enableAllSound } from "./features/disableSound";
|
package/dist/index.lua
CHANGED
|
@@ -118,6 +118,11 @@ do
|
|
|
118
118
|
end
|
|
119
119
|
end
|
|
120
120
|
end
|
|
121
|
+
do
|
|
122
|
+
local ____collectiblesSeen = require("features.collectiblesSeen")
|
|
123
|
+
local isCollectiblePreviouslySeen = ____collectiblesSeen.isCollectiblePreviouslySeen
|
|
124
|
+
____exports.isCollectiblePreviouslySeen = isCollectiblePreviouslySeen
|
|
125
|
+
end
|
|
121
126
|
do
|
|
122
127
|
local ____deployJSONRoom = require("features.deployJSONRoom")
|
|
123
128
|
local deployJSONRoom = ____deployJSONRoom.deployJSONRoom
|