From 3df7309dbf0b8a2249679375962f343217889218 Mon Sep 17 00:00:00 2001 From: Pieter-Jan Briers Date: Mon, 24 Jun 2024 18:02:43 +0200 Subject: [PATCH] Hotfix examine (#29408) #55328 was failing tests and shouldn't have been merged, it broke examine. The problem is that for some reason, client-side examine system doesn't call base Initialize. So my entity query change (that I did not test) broke. By the way, this same "not calling base" meant that group examine system wasn't predicting properly when it totally could've. Incredible. --- Content.Client/Examine/ExamineSystem.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Content.Client/Examine/ExamineSystem.cs b/Content.Client/Examine/ExamineSystem.cs index b476971a13..60d2b6a6ef 100644 --- a/Content.Client/Examine/ExamineSystem.cs +++ b/Content.Client/Examine/ExamineSystem.cs @@ -46,6 +46,8 @@ namespace Content.Client.Examine public override void Initialize() { + base.Initialize(); + UpdatesOutsidePrediction = true; SubscribeLocalEvent>(AddExamineVerb); -- 2.51.2