Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ a message as the second (both positionally), and show them in a temporary messag
# Changelog

### v1.6
- Linting fixes.
- Made Willow1 use UE3 controller key names.

### v1.5
- Support host-only coop support value.
Expand Down
6 changes: 5 additions & 1 deletion key_matching.py
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,11 @@
"Y",
"Z",
"Zero",
*(KNOWN_UE3_CONTROLLER_KEYS if Game.get_tree() == Game.Willow2 else KNOWN_UE4_CONTROLLER_KEYS),
*(
KNOWN_UE3_CONTROLLER_KEYS
if Game.get_tree() in [Game.Willow1, Game.Willow2]
else KNOWN_UE4_CONTROLLER_KEYS
),
}

# endregion
Expand Down