Skip to content

Commit

Permalink
tweak(kbd): bind PageUp/Down to move_up/down, fix move_down kbd
Browse files Browse the repository at this point in the history
  • Loading branch information
igorsaux committed Jul 4, 2024
1 parent e3d3756 commit b1ec576
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions code/modules/keybindings/mob.dm
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@
return TRUE

/datum/keybinding/mob/move_up
hotkey_keys = list(",")
hotkey_keys = list(",", "Northeast")
name = "move_up"
full_name = "Move Up"
description = "Makes you go up"
Expand All @@ -132,12 +132,12 @@
M.SelfMove(UP)

/datum/keybinding/mob/move_down
hotkey_keys = list(".")
hotkey_keys = list(".", "Southeast")
name = "move_down"
full_name = "Move Down"
description = "Makes you go down"

/datum/keybinding/mob/move_up/down(client/user)
/datum/keybinding/mob/move_down/down(client/user)
var/mob/M = user.mob
M.SelfMove(DOWN)

Expand Down

0 comments on commit b1ec576

Please sign in to comment.