We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7bc1319 commit b1bc883Copy full SHA for b1bc883
code/modules/keybindings/bindings_atom.dm
@@ -50,19 +50,19 @@
50
/client/verb/move_key_north()
51
set instant = TRUE
52
set hidden = TRUE
53
- intended_direction = NORTH
+ intended_direction |= NORTH
54
55
/client/verb/move_key_south()
56
57
58
- intended_direction = SOUTH
+ intended_direction |= SOUTH
59
60
/client/verb/move_key_west()
61
62
63
- intended_direction = WEST
+ intended_direction |= WEST
64
65
/client/verb/move_key_east()
66
67
68
- intended_direction = EAST
+ intended_direction |= EAST
0 commit comments