isaacscript-common 29.6.0 → 29.6.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 29.6.0
3
+ isaacscript-common 29.6.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": "29.6.0",
3
+ "version": "29.6.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": "^13.0.6"
28
+ "isaac-typescript-definitions": "^13.0.7"
29
29
  }
30
30
  }
@@ -62,7 +62,7 @@ export class PostNewRoomEarly extends CustomCallback<ModCallbackCustom.POST_NEW_
62
62
  let topLeftWall = room.GetGridEntity(topLeftWallGridIndex);
63
63
  let topLeftWall2 = room.GetGridEntity(rightOfTopWallGridIndex);
64
64
 
65
- // Sometimes, the PreEntitySpawn callback can fire before any grid entities in the room have
65
+ // Sometimes, the `PRE_ENTITY_SPAWN` callback can fire before any grid entities in the room have
66
66
  // spawned, which means that the top-left wall will not exist. If ths is the case, then simply
67
67
  // spawn the top-left wall early.
68
68
  if (topLeftWall === undefined) {