isaacscript-common 9.8.1 → 9.8.4
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/callbacks/postPlayerFatalDamage.lua +1 -1
- package/dist/features/debugDisplay/debugDisplay.lua +1 -6
- package/dist/features/extraConsoleCommands/init.lua +51 -160
- package/dist/features/extraConsoleCommands/listCommands.d.ts +25 -9
- package/dist/features/extraConsoleCommands/listCommands.d.ts.map +1 -1
- package/dist/features/extraConsoleCommands/listCommands.lua +70 -30
- package/dist/features/extraConsoleCommands/v.d.ts +8 -0
- package/dist/features/extraConsoleCommands/v.d.ts.map +1 -1
- package/dist/features/extraConsoleCommands/v.lua +11 -1
- package/dist/functions/charge.lua +2 -2
- package/dist/functions/log.d.ts.map +1 -1
- package/dist/functions/log.lua +3 -0
- package/package.json +2 -2
- package/src/callbacks/postPlayerFatalDamage.ts +1 -1
- package/src/features/debugDisplay/debugDisplay.ts +1 -1
- package/src/features/extraConsoleCommands/init.ts +58 -266
- package/src/features/extraConsoleCommands/listCommands.ts +97 -39
- package/src/features/extraConsoleCommands/v.ts +9 -0
- package/src/functions/charge.ts +2 -2
- package/src/functions/log.ts +3 -0
package/src/functions/log.ts
CHANGED
|
@@ -282,6 +282,8 @@ export function logProjectileFlags(
|
|
|
282
282
|
|
|
283
283
|
/** Helper function for logging information about the current room. */
|
|
284
284
|
export function logRoom(this: void): void {
|
|
285
|
+
const room = game.GetRoom();
|
|
286
|
+
const bossID = room.GetBossID();
|
|
285
287
|
const roomGridIndex = getRoomGridIndex();
|
|
286
288
|
const roomListIndex = getRoomListIndex();
|
|
287
289
|
const roomData = getRoomData();
|
|
@@ -306,6 +308,7 @@ export function logRoom(this: void): void {
|
|
|
306
308
|
}
|
|
307
309
|
|
|
308
310
|
log(`Current room list index: ${roomListIndex}`);
|
|
311
|
+
log(`Current room boss ID: ${bossID}`);
|
|
309
312
|
}
|
|
310
313
|
|
|
311
314
|
/**
|