diff options
| author | login000 <Dheeraj@SPEEDYMAC.local> | 2018-01-15 16:12:39 +1100 |
|---|---|---|
| committer | login000 <Dheeraj@SPEEDYMAC.local> | 2018-01-15 16:12:39 +1100 |
| commit | 6dee648848720cac2e68aef8695302a863f37de7 (patch) | |
| tree | 4309b75e160f281474b7b1141f30099519d90fdd | |
| parent | 3f5a6be85d5939efeaa134aa12c9b4e681910a23 (diff) | |
xcv correspond to ground, inventory, equipment
xcv now correspond to ground, inventory, equipment. This is the same as
their top-down order displayed in asciifarm’s ui’s sidebar.
| -rw-r--r-- | asciifarm/keybindings/keybindings.hy | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/asciifarm/keybindings/keybindings.hy b/asciifarm/keybindings/keybindings.hy index c777a6c..bf4b214 100644 --- a/asciifarm/keybindings/keybindings.hy +++ b/asciifarm/keybindings/keybindings.hy @@ -21,9 +21,9 @@ r (do [ (inp ["interact" "south"]) (inp ["interact" "east"]) (inp ["interact" "west"])]) -v (.select (selector "inventory") 1 True True) -c (.select (selector "ground") 1 True True) -x (.select (selector "equipment") 1 True True) +c (.select (selector "inventory") 1 True True) +x (.select (selector "ground") 1 True True) +v (.select (selector "equipment") 1 True True) z (inp ["unequip" (selectorvalue "equipment")]) f (do [ (inp ["attack"]) |
