diff --git a/Readme.md b/Readme.md index 7afe8b7..8329476 100644 --- a/Readme.md +++ b/Readme.md @@ -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. diff --git a/key_matching.py b/key_matching.py index 9686658..2a977eb 100644 --- a/key_matching.py +++ b/key_matching.py @@ -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