From eae623b83ab6a6831b82b18bc75429af85a9ba56 Mon Sep 17 00:00:00 2001 From: TheGamerdk <5618080+TheGamerdk@users.noreply.github.com> Date: Tue, 18 Jun 2024 21:58:19 +0200 Subject: [PATCH] Overwatch console now shows dead people by default (#6485) # About the pull request Pretty important to see who's dead. # Explain why it's good for the game # Testing Photographs and Procedure
Screenshots & Videos Put screenshots and videos here with an empty line between the screenshots and the `
` tags.
# Changelog :cl: add: Overwatch console shows dead marines by default. /:cl: --- tgui/packages/tgui/interfaces/OverwatchConsole.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tgui/packages/tgui/interfaces/OverwatchConsole.jsx b/tgui/packages/tgui/interfaces/OverwatchConsole.jsx index 6f21c11c125f..ae8637e63c71 100644 --- a/tgui/packages/tgui/interfaces/OverwatchConsole.jsx +++ b/tgui/packages/tgui/interfaces/OverwatchConsole.jsx @@ -361,7 +361,7 @@ const SquadMonitor = (props) => { ); const [showDeadMarines, setShowDeadMarines] = useSharedState( 'showdead', - false, + true, ); const [marineSearch, setMarineSearch] = useSharedState('marinesearch', null);