From 083fe1e70ffc96e91fd0e43a931bcaf95734bbd4 Mon Sep 17 00:00:00 2001 From: Sir-Skurpsalot <87043120+Sir-Skurpsalot@users.noreply.github.com> Date: Tue, 9 Dec 2025 18:58:58 -0700 Subject: [PATCH] Update utility.tscript ctrl key bitmap shows in keybinds menu now --- Templates/BaseGame/game/data/UI/scripts/utility.tscript | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Templates/BaseGame/game/data/UI/scripts/utility.tscript b/Templates/BaseGame/game/data/UI/scripts/utility.tscript index 86ca46604..c7648c5b2 100644 --- a/Templates/BaseGame/game/data/UI/scripts/utility.tscript +++ b/Templates/BaseGame/game/data/UI/scripts/utility.tscript @@ -115,8 +115,7 @@ function getButtonBitmap(%device, %button) { if(%button $= "lshift" || %button $= "rshift") %button = "shift"; - - if(%button $= "lcontrol" || %button $= "rcontrol") + else if(%button $= "lcontrol" || %button $= "rcontrol") %button = "ctrl"; %assetId = "UI:Keyboard_Black_" @ %button @ "_image";