Skip to content

Commit

Permalink
data contrib bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
Jukkales committed Sep 4, 2024
1 parent 5223dc2 commit 85cda26
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion NecroLens/Service/DeepDungeonService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,6 @@ private void OnActorControlSelf(IntPtr dataPtr)
case DataIds.DirectorUpdateDutyRecommenced:
if (Ready && FloorDetails.FloorTransfer)
{
FloorDetails.DumpFloorObjects(CurrentContentId);
FloorDetails.NextFloor();
}

Expand All @@ -173,6 +172,8 @@ private void OnSystemLogMessage(IntPtr dataPtr, int logId)
break;
case DataIds.SystemLogTransferenceInitiated:
FloorDetails.FloorTransfer = true;
FloorDetails.DumpFloorObjects(CurrentContentId);
FloorDetails.FloorObjects.Clear();
break;
case 0x1C6A:
case 0x1C6B:
Expand Down

0 comments on commit 85cda26

Please sign in to comment.