diff options
Diffstat (limited to 'src/input')
-rw-r--r-- | src/input/inputaction.h | 1 | ||||
-rw-r--r-- | src/input/inputactionmap.h | 9 | ||||
-rw-r--r-- | src/input/pages/other.cpp | 6 |
3 files changed, 16 insertions, 0 deletions
diff --git a/src/input/inputaction.h b/src/input/inputaction.h index 2ce0518cc..fa9ff9745 100644 --- a/src/input/inputaction.h +++ b/src/input/inputaction.h @@ -480,6 +480,7 @@ namespace InputAction CATCH_PET, IGNORE_WHISPER, UNIGNORE_WHISPER, + MERCENARY_FIRE, TOTAL }; } // namespace InputAction diff --git a/src/input/inputactionmap.h b/src/input/inputactionmap.h index 3e95f4291..957c9a36a 100644 --- a/src/input/inputactionmap.h +++ b/src/input/inputactionmap.h @@ -4062,6 +4062,15 @@ static const InputActionData inputActionData[InputAction::TOTAL] = { InputCondition::INGAME, "serverunignore", false}, + {"keyMercenaryFire", + InputType::UNKNOWN, InputAction::NO_VALUE, + InputType::UNKNOWN, InputAction::NO_VALUE, + Input::GRP_DEFAULT, + &Actions::mercenaryFire, + InputAction::NO_VALUE, 50, + InputCondition::INGAME, + "mercenaryfire|firemercenary", + false} }; #endif // INPUT_INPUTACTIONMAP_H diff --git a/src/input/pages/other.cpp b/src/input/pages/other.cpp index 3994b00f5..4077b13bc 100644 --- a/src/input/pages/other.cpp +++ b/src/input/pages/other.cpp @@ -364,6 +364,12 @@ SetupActionData setupActionDataOther[] = "", }, { + // TRANSLATORS: input action name + N_("Fire your mercenary"), + InputAction::MERCENARY_FIRE, + "", + }, + { "", InputAction::NO_VALUE, "" |