From 4b9a1465afa85ef1e96354e1adf49c95c7c09392 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Mon, 1 Mar 2021 20:13:12 +0100 Subject: [PATCH] - Exhumed: fixed inventory use bindings They got shuffled around a bit by accident. --- wadsrc/static/menudef.txt | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/wadsrc/static/menudef.txt b/wadsrc/static/menudef.txt index 1bb33fefc..75536c6e0 100644 --- a/wadsrc/static/menudef.txt +++ b/wadsrc/static/menudef.txt @@ -670,12 +670,12 @@ OptionMenu "InventoryControlsMenu" protected ifgame(Exhumed) { StaticText "" - Control "$TXT_EX_USEINV1" , "useitem 1" - Control "$TXT_EX_USEINV2" , "useitem 2" - Control "$TXT_EX_USEINV3" , "useitem 3" - Control "$TXT_EX_USEINV4" , "useitem 4" - Control "$TXT_EX_USEINV5" , "useitem 5" - Control "$TXT_EX_USEINV6" , "useitem 6" + Control "$TXT_EX_USEINV1" , "useitem 4" + Control "$TXT_EX_USEINV2" , "useitem 5" + Control "$TXT_EX_USEINV3" , "useitem 6" + Control "$TXT_EX_USEINV4" , "useitem 1" + Control "$TXT_EX_USEINV5" , "useitem 3" + Control "$TXT_EX_USEINV6" , "useitem 2" } }