Fix guidebook examine not working in lobby (#17093)

This commit is contained in:
Leon Friedrich
2023-06-05 09:33:50 +12:00
committed by GitHub
parent cd8e5ae34a
commit 5b36355541
5 changed files with 33 additions and 19 deletions

View File

@@ -79,7 +79,8 @@ public sealed partial class GuideEntityEmbed : BoxContainer, IDocumentTag
// do examination?
if (args.Function == ContentKeyFunctions.ExamineEntity)
{
_examineSystem.DoExamine(entity.Value);
_examineSystem.DoExamine(entity.Value,
userOverride: _guidebookSystem.GetGuidebookUser());
args.Handle();
return;
}