isaacscript-common 15.0.2 → 15.0.3

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 15.0.2
3
+ isaacscript-common 15.0.3
4
4
 
5
5
  This is the "isaacscript-common" library, which was created with the IsaacScript tool.
6
6
 
@@ -28735,7 +28735,6 @@ function PostPlayerInitFirst.prototype.____constructor(self)
28735
28735
  self:fire(player)
28736
28736
  end
28737
28737
  self.customCallbacksUsed = {{ModCallbackCustom.POST_NEW_ROOM_REORDERED, {self.postNewRoomReordered}}, {ModCallbackCustom.POST_PLAYER_INIT_LATE, {self.postPlayerInitLate}}}
28738
- Isaac.DebugString("GETTING HERE ZZZZZ")
28739
28738
  end
28740
28739
  return ____exports
28741
28740
  end,
@@ -1 +1 @@
1
- {"version":3,"file":"PostPlayerInitFirst.d.ts","sourceRoot":"","sources":["../../../../src/classes/callbacks/PostPlayerInitFirst.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAAE,MAAM,+BAA+B,CAAC;AAGlE,OAAO,EAAE,gBAAgB,EAAE,MAAM,kBAAkB,CAAC;AACpD,OAAO,EAAE,cAAc,EAAE,MAAM,2BAA2B,CAAC;AAE3D,qBAAa,mBAAoB,SAAQ,cAAc,CAAC,iBAAiB,CAAC,sBAAsB,CAAC;;IAY/F,UAAmB,UAAU,0BAAoB;IAGjD,OAAO,CAAC,oBAAoB,CAY1B;IAGF,OAAO,CAAC,kBAAkB,CAOxB;CACH"}
1
+ {"version":3,"file":"PostPlayerInitFirst.d.ts","sourceRoot":"","sources":["../../../../src/classes/callbacks/PostPlayerInitFirst.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAAE,MAAM,+BAA+B,CAAC;AAGlE,OAAO,EAAE,gBAAgB,EAAE,MAAM,kBAAkB,CAAC;AACpD,OAAO,EAAE,cAAc,EAAE,MAAM,2BAA2B,CAAC;AAE3D,qBAAa,mBAAoB,SAAQ,cAAc,CAAC,iBAAiB,CAAC,sBAAsB,CAAC;;IAU/F,UAAmB,UAAU,0BAAoB;IAGjD,OAAO,CAAC,oBAAoB,CAY1B;IAGF,OAAO,CAAC,kBAAkB,CAOxB;CACH"}
@@ -35,6 +35,5 @@ function PostPlayerInitFirst.prototype.____constructor(self)
35
35
  self:fire(player)
36
36
  end
37
37
  self.customCallbacksUsed = {{ModCallbackCustom.POST_NEW_ROOM_REORDERED, {self.postNewRoomReordered}}, {ModCallbackCustom.POST_PLAYER_INIT_LATE, {self.postPlayerInitLate}}}
38
- Isaac.DebugString("GETTING HERE ZZZZZ")
39
38
  end
40
39
  return ____exports
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "isaacscript-common",
3
- "version": "15.0.2",
3
+ "version": "15.0.3",
4
4
  "description": "Helper functions and features for IsaacScript mods.",
5
5
  "keywords": [
6
6
  "isaac",
@@ -12,8 +12,6 @@ export class PostPlayerInitFirst extends CustomCallback<ModCallbackCustom.POST_P
12
12
  [ModCallbackCustom.POST_NEW_ROOM_REORDERED, [this.postNewRoomReordered]],
13
13
  [ModCallbackCustom.POST_PLAYER_INIT_LATE, [this.postPlayerInitLate]],
14
14
  ];
15
-
16
- Isaac.DebugString("GETTING HERE ZZZZZ");
17
15
  }
18
16
 
19
17
  protected override shouldFire = shouldFirePlayer;
@@ -97,6 +97,8 @@ export class DisableInputs extends Feature {
97
97
  * Helper function to enable all inputs. Use this function to set things back to normal after
98
98
  * having used one of the other helper functions to disable inputs.
99
99
  *
100
+ * In order to use this function, you must upgrade your mod with `ISCFeature.DISABLE_INPUTS`.
101
+ *
100
102
  * @param key The name of the mod feature that is requesting the enable/disable. This is needed so
101
103
  * that multiple mod features can work in tandem.
102
104
  */