From a3aa2e877e79ad5f1c08ca2106503dc6a2b404da Mon Sep 17 00:00:00 2001 From: Mitchell Richters Date: Sat, 23 Sep 2023 09:51:45 +1000 Subject: [PATCH] - Exhumed: Repair use key clearing issue from ed2c55729781808ffb2cf04148f20ff69d95c2e7. * It's important that the use button is cleared for Exhumed, just not in the game code like it was previously done. * Fixes #971. --- source/core/gameinput.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/core/gameinput.cpp b/source/core/gameinput.cpp index ec8156906..de94a3e7e 100644 --- a/source/core/gameinput.cpp +++ b/source/core/gameinput.cpp @@ -324,7 +324,7 @@ void GameInput::processInputBits() if (buttonMap.ButtonDown(gamefunc_Open)) { - if (isBlood()) buttonMap.ClearButton(gamefunc_Open); + if (isBlood() || isExhumed()) buttonMap.ClearButton(gamefunc_Open); inputBuffer.actions |= SB_OPEN; } if (G_CheckAutorun(buttonMap.ButtonDown(gamefunc_Run)))