Skip to content

Commit

Permalink
Merge pull request #2543 from ajrb/invNullCheck
Browse files Browse the repository at this point in the history
Add null check to inventory window
  • Loading branch information
Interkarma committed Nov 1, 2023
2 parents 83ce866 + ee05caf commit c21a4a2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1586,7 +1586,7 @@ protected void DoTransferItem(DaggerfallUnityItem item, ItemCollection from, Ite
while (uiManager.TopWindow != this)
uiManager.PopWindow();
CloseWindow();
chooseOneCallback(item);
chooseOneCallback?.Invoke(item);
}
}

Expand Down

0 comments on commit c21a4a2

Please sign in to comment.