Skip to content

Commit a6dd3dd

Browse files
committed
Update .gitignore to include imgui.ini and fix SHIFT key state retrieval in RopeInputController
1 parent b63b247 commit a6dd3dd

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -102,3 +102,4 @@ LogLoadingWarning.txt
102102
LogConsole.txt
103103
Console.dump.log
104104
Console.input.log
105+
imgui.ini

Data/Base.rte/Devices/Tools/GrappleGun/Scripts/RopeInputController.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ function RopeInputController.handleShiftMousewheelControls(grappleInstance, cont
239239
Logger.debug("RopeInputController.handleShiftMousewheelControls() - Equipment and attachment checks passed")
240240

241241
-- Check for actual SHIFT key using UInputMan
242-
local shiftHeld = UInputMan:FlagShiftState()
242+
local shiftHeld = UInputMan.FlagShiftState
243243
Logger.debug("RopeInputController.handleShiftMousewheelControls() - SHIFT key held (UInputMan): %s", tostring(shiftHeld))
244244

245245
if not shiftHeld then

0 commit comments

Comments
 (0)