Two small fixes (bad menu flags in cheat plugin, copy/paste in docs).

This commit is contained in:
Vas Crabb 2021-11-04 11:41:46 +11:00
parent 6e355f86c8
commit 18a6113655
2 changed files with 7 additions and 6 deletions

View File

@ -222,8 +222,9 @@ Kbd 1
Press the **1** key on the keyboard once, then wait one second to accept the
setting.
Kbd F12 Kbd Shift Keyboard Alt
Press the **P** key on the keyboard once, press the left **Shift** key once,
press the left **Alt** key once, then wait one second to accept the setting.
Press the **F12** key on the keyboard once, press the left **Shift** key
once, press the left **Alt** key once, then wait one second to accept the
setting.
Kbd P not Kbd Shift not Kbd Right Shift
Press the **P** key on the keyboard once, press the left **Shift** key
twice, press the right **Shift** key twice, then wait one second to accept

View File

@ -691,10 +691,10 @@ function cheat.startplugin()
end
end
end
menu[#menu + 1] = {"---", "", 0}
menu[#menu + 1] = {_("Set hotkeys"), "", 0}
menu[#menu + 1] = {_("Reset All"), "", 0}
menu[#menu + 1] = {_("Reload All"), "", 0}
menu[#menu + 1] = {"---", "", ""}
menu[#menu + 1] = {_("Set hotkeys"), "", ""}
menu[#menu + 1] = {_("Reset All"), "", ""}
menu[#menu + 1] = {_("Reload All"), "", ""}
return menu
end