Fix dock highlighting (#24369)

Nentity casualty
This commit is contained in:
metalgearsloth
2024-01-21 23:14:47 +11:00
committed by GitHub
parent 14e583cf3e
commit 6ae64929ba
2 changed files with 3 additions and 4 deletions

View File

@@ -234,7 +234,7 @@ public sealed partial class ShuttleConsoleWindow : FancyWindow,
private void OnDockMouseEntered(GUIMouseHoverEventArgs obj, DockingInterfaceState state)
{
RadarScreen.HighlightedDock = _entManager.GetEntity(state.Entity);
RadarScreen.HighlightedDock = state.Entity;
}
private void OnDockMouseExited(GUIMouseHoverEventArgs obj, DockingInterfaceState state)