isaacscript-common 39.4.0 → 39.4.2
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.
package/dist/index.rollup.d.ts
CHANGED
|
@@ -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
|
|
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
|
/**
|
|
@@ -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
|
|
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,
|
|
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
|
|
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.
|
|
3
|
+
"version": "39.4.2",
|
|
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": "^17.0.
|
|
28
|
+
"isaac-typescript-definitions": "^17.0.3"
|
|
29
29
|
}
|
|
30
30
|
}
|
|
@@ -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
|
|
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()) {
|