Skip to content
This repository was archived by the owner on May 22, 2025. It is now read-only.

Commit 7bf19a2

Browse files
Fixes being unable to grab things with ctrl-click (#22670)
* savefile updating * it's grabbin' time * upgrades, people, upgrades * fixes some stuff * Update click.dm
1 parent 2ca3e85 commit 7bf19a2

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

code/_onclick/click.dm

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,8 +97,7 @@
9797
if(modifiers["alt"]) // alt and alt-gr (rightalt)
9898
AltClickOn(A)
9999
return
100-
if(modifiers["ctrl"])
101-
CtrlClickOn(A)
100+
if(modifiers["ctrl"] && CtrlClickOn(A))
102101
return
103102

104103
if(incapacitated(ignore_restraints = 1))

0 commit comments

Comments
 (0)