From 03846df9acd98dd40babfb7c3ed404773753707c Mon Sep 17 00:00:00 2001 From: James <5511220+Zamiell@users.noreply.github.com> Date: Mon, 4 Sep 2023 12:24:36 -0400 Subject: [PATCH] feat(common): better entity logging --- packages/isaacscript-common/src/functions/logEntities.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/isaacscript-common/src/functions/logEntities.ts b/packages/isaacscript-common/src/functions/logEntities.ts index 56bb37a36..b5b11f267 100644 --- a/packages/isaacscript-common/src/functions/logEntities.ts +++ b/packages/isaacscript-common/src/functions/logEntities.ts @@ -225,6 +225,7 @@ function getEntityLogLine(this: void, entity: Entity, num?: int): string { msg += ` - Child: ${entity.Child}\n`; msg += ` - SpawnerEntity: ${entity.SpawnerEntity}\n`; msg += ` - SpawnerType / SpawnerVariant: ${entity.SpawnerType}.${entity.SpawnerVariant}\n`; + msg += ` - FrameCount: ${entity.FrameCount}\n`; if (npc !== undefined) { msg += ` - CanShutDoors: ${npc.CanShutDoors}\n`; }