isaacscript-common 39.4.0 → 39.4.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.
@@ -4099,7 +4099,7 @@ export declare function emptyArray<T>(array: T[]): void;
4099
4099
  */
4100
4100
  export declare function emptyRoom(): void;
4101
4101
 
4102
- /** Helper function to remove all grid entities from a room except for doors, and walls. */
4102
+ /** Helper function to remove all grid entities from a room except for doors and walls. */
4103
4103
  export declare function emptyRoomGridEntities(): void;
4104
4104
 
4105
4105
  /**
@@ -1,6 +1,6 @@
1
1
  --[[
2
2
 
3
- isaacscript-common 39.4.0
3
+ isaacscript-common 39.4.1
4
4
 
5
5
  This is the "isaacscript-common" library, which was created with the IsaacScript tool.
6
6
 
@@ -5,6 +5,6 @@
5
5
  * effects (1000), doors, and walls.
6
6
  */
7
7
  export declare function emptyRoom(): void;
8
- /** Helper function to remove all grid entities from a room except for doors, and walls. */
8
+ /** Helper function to remove all grid entities from a room except for doors and walls. */
9
9
  export declare function emptyRoomGridEntities(): void;
10
10
  //# sourceMappingURL=emptyRoom.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"emptyRoom.d.ts","sourceRoot":"","sources":["../../../src/functions/emptyRoom.ts"],"names":[],"mappings":"AAsBA;;;;;GAKG;AACH,wBAAgB,SAAS,IAAI,IAAI,CAGhC;AAmCD,2FAA2F;AAC3F,wBAAgB,qBAAqB,IAAI,IAAI,CAyB5C"}
1
+ {"version":3,"file":"emptyRoom.d.ts","sourceRoot":"","sources":["../../../src/functions/emptyRoom.ts"],"names":[],"mappings":"AAsBA;;;;;GAKG;AACH,wBAAgB,SAAS,IAAI,IAAI,CAGhC;AAmCD,0FAA0F;AAC1F,wBAAgB,qBAAqB,IAAI,IAAI,CAyB5C"}
@@ -39,7 +39,7 @@ function emptyRoomEntities(self)
39
39
  ::__continue4::
40
40
  end
41
41
  end
42
- --- Helper function to remove all grid entities from a room except for doors, and walls.
42
+ --- Helper function to remove all grid entities from a room except for doors and walls.
43
43
  function ____exports.emptyRoomGridEntities(self)
44
44
  local removedOneOrMoreGridEntities = false
45
45
  for ____, gridEntity in ipairs(getGridEntities(nil)) do
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "isaacscript-common",
3
- "version": "39.4.0",
3
+ "version": "39.4.1",
4
4
  "description": "Helper functions and features for IsaacScript mods.",
5
5
  "keywords": [
6
6
  "isaac",
@@ -64,7 +64,7 @@ function emptyRoomEntities() {
64
64
  }
65
65
  }
66
66
 
67
- /** Helper function to remove all grid entities from a room except for doors, and walls. */
67
+ /** Helper function to remove all grid entities from a room except for doors and walls. */
68
68
  export function emptyRoomGridEntities(): void {
69
69
  let removedOneOrMoreGridEntities = false;
70
70
  for (const gridEntity of getGridEntities()) {