From 55376fb5b2b626fd47760c7e99e863afed496359 Mon Sep 17 00:00:00 2001 From: Pieter-Jan Briers Date: Sat, 30 May 2020 16:45:45 +0200 Subject: [PATCH] Examining does not click right-click menu. --- Content.Client/GameObjects/EntitySystems/VerbSystem.cs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Content.Client/GameObjects/EntitySystems/VerbSystem.cs b/Content.Client/GameObjects/EntitySystems/VerbSystem.cs index 8b1d64d6d3..a28a7c39e9 100644 --- a/Content.Client/GameObjects/EntitySystems/VerbSystem.cs +++ b/Content.Client/GameObjects/EntitySystems/VerbSystem.cs @@ -432,6 +432,12 @@ namespace Content.Client.GameObjects.EntitySystems return; } + if (args.Function == ContentKeyFunctions.ExamineEntity) + { + Get().DoExamine(_entity); + return; + } + if (_master._itemSlotManager.OnButtonPressed(args, _entity)) { _master.CloseAllMenus();