From 54b3783b03c493f439b91121bfafaf4684d6a49b Mon Sep 17 00:00:00 2001 From: Pieter-Jan Briers Date: Sat, 23 May 2020 22:52:17 +0200 Subject: [PATCH] Use mouse-focused popup for equip failure message. --- .../GameObjects/Components/GUI/InventoryComponent.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Content.Server/GameObjects/Components/GUI/InventoryComponent.cs b/Content.Server/GameObjects/Components/GUI/InventoryComponent.cs index 25a5517cfc..383dc9c0e2 100644 --- a/Content.Server/GameObjects/Components/GUI/InventoryComponent.cs +++ b/Content.Server/GameObjects/Components/GUI/InventoryComponent.cs @@ -1,4 +1,4 @@ -using System; +using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks.Dataflow; @@ -301,7 +301,7 @@ namespace Content.Server.GameObjects hands.PutInHand(clothing); if (reason != null) - _serverNotifyManager.PopupMessage(Owner, Owner, reason); + _serverNotifyManager.PopupMessageCursor(Owner, reason); } } break;