Fix examine going to all clients (#175)

It was using the incorrect overload
This commit is contained in:
clusterfack
2019-03-30 17:46:54 -05:00
committed by Pieter-Jan Briers
parent 2bfb03cd29
commit bc98d3cef8

View File

@@ -76,7 +76,7 @@ namespace Content.Server.GameObjects.EntitySystems
} }
//Send to client chat channel //Send to client chat channel
IoCManager.Resolve<IChatManager>().DispatchMessage(SS14.Shared.Console.ChatChannel.Visual, fullExamineText.ToString(), session.SessionId); IoCManager.Resolve<IChatManager>().DispatchMessage(svSession.ConnectedClient, SS14.Shared.Console.ChatChannel.Visual, fullExamineText.ToString(), session.SessionId);
} }
} }
} }