isaacscript-common 3.5.0 → 3.5.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.
@@ -986,7 +986,8 @@ export declare enum ModCallbackCustom {
986
986
  */
987
987
  POST_SPIKES_UPDATE = 67,
988
988
  /**
989
- * Fires on the first `POST_TEAR_UPDATE` frame for each tear.
989
+ * Fires on the first `POST_TEAR_UPDATE` frame for each tear (which is when
990
+ * `EntityTear.FrameCount` is equal to 0).
990
991
  *
991
992
  * This callback is useful because many attributes cannot be set or retrieved properly in the
992
993
  * normal `POST_TEAR_INIT` callback.
@@ -1000,7 +1001,8 @@ export declare enum ModCallbackCustom {
1000
1001
  */
1001
1002
  POST_TEAR_INIT_LATE = 68,
1002
1003
  /**
1003
- * Fires on the second `POST_TEAR_UPDATE` frame for each tear (i.e. frame 1).
1004
+ * Fires on the second `POST_TEAR_UPDATE` frame for each tear (which is when
1005
+ * `EntityTear.FrameCount` is equal to 1).
1004
1006
  *
1005
1007
  * This callback is useful because Incubus tears are not distinguishable until the second frame.
1006
1008
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "isaacscript-common",
3
- "version": "3.5.0",
3
+ "version": "3.5.1",
4
4
  "description": "Helper functions and features for IsaacScript mods.",
5
5
  "keywords": [
6
6
  "isaac",
@@ -22,6 +22,6 @@
22
22
  "main": "index",
23
23
  "types": "index.d.ts",
24
24
  "dependencies": {
25
- "isaac-typescript-definitions": "^2.0.59"
25
+ "isaac-typescript-definitions": "^2.0.60"
26
26
  }
27
27
  }