isaacscript-common 57.9.0 → 57.9.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,6 +1,6 @@
1
1
  --[[
2
2
 
3
- isaacscript-common 57.9.0
3
+ isaacscript-common 57.9.1
4
4
 
5
5
  This is the "isaacscript-common" library, which was created with the IsaacScript tool.
6
6
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "isaacscript-common",
3
- "version": "57.9.0",
3
+ "version": "57.9.1",
4
4
  "description": "Helper functions and features for IsaacScript mods.",
5
5
  "keywords": [
6
6
  "isaac",
@@ -25,6 +25,6 @@
25
25
  "main": "dist/src/index",
26
26
  "types": "dist/index.rollup.d.ts",
27
27
  "dependencies": {
28
- "isaac-typescript-definitions": "^26.1.0"
28
+ "isaac-typescript-definitions": "^26.1.1"
29
29
  }
30
30
  }
@@ -258,7 +258,7 @@ export class CustomStages extends Feature {
258
258
  // ModCallback.POST_CURSE_EVAL (12)
259
259
  private readonly postCurseEval = (
260
260
  curses: BitFlags<LevelCurse>,
261
- ): BitFlags<LevelCurse> | undefined => {
261
+ ): BitFlags<LevelCurse> | LevelCurse | undefined => {
262
262
  const customStage = v.run.currentCustomStage;
263
263
  if (customStage === null) {
264
264
  return undefined;
@@ -152,7 +152,7 @@ export class ExtraConsoleCommands extends Feature {
152
152
  // ModCallback.POST_CURSE_EVAL (12)
153
153
  private readonly postCurseEval = (
154
154
  curses: BitFlags<LevelCurse>,
155
- ): BitFlags<LevelCurse> | undefined => {
155
+ ): BitFlags<LevelCurse> | LevelCurse | undefined => {
156
156
  if (v.persistent.disableCurses) {
157
157
  return bitFlags(LevelCurse.NONE);
158
158
  }