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.
@@ -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
  /**