Files
Rage 376b4b9689 Added New Mods and Profiles Folders
This is a complete rebuild of the modpack, with all new mods and updates for 1.5.3 of Anomaly.
2025-01-14 05:07:53 -05:00

22 lines
643 B
Plaintext

-- SkinningWithSpace - Nitpicker's Modpack
-- Last modified: 2022.04.10
-- https://github.com/Ishmaeel/NitpickerModpack
function Ishy_OnKeyboard(sender, dik, keyboard_action)
local res = CUIScriptWnd.OnKeyboard(sender, dik, keyboard_action)
if (res == false) then
sender.CC:OnKeyboard(dik, keyboard_action)
if (dik == DIK_keys.DIK_RETURN or dik == DIK_keys.DIK_SPACE) then
sender:OnButton_LootAll()
elseif (dik == DIK_keys.DIK_ESCAPE) then
sender:Close()
end
end
return res
end
function on_game_start()
ui_mutant_loot.UIMutantLoot.OnKeyboard = Ishy_OnKeyboard
end