summaryrefslogtreecommitdiff
path: root/src/input
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2014-12-12 18:40:43 +0300
committerAndrei Karas <akaras@inbox.ru>2014-12-12 18:40:43 +0300
commitcc06df44833d5e39b32065bb7892e787f6a1f54c (patch)
tree51073ec246786f4bab68113f83c63f2d6def581d /src/input
parentabce183c65e7f6966d3778f4da6d627ea9cdf619 (diff)
downloadmv-cc06df44833d5e39b32065bb7892e787f6a1f54c.tar.gz
mv-cc06df44833d5e39b32065bb7892e787f6a1f54c.tar.bz2
mv-cc06df44833d5e39b32065bb7892e787f6a1f54c.tar.xz
mv-cc06df44833d5e39b32065bb7892e787f6a1f54c.zip
Add chat command to show "/w NICK" message or open whisper tab (depend on settings)
New chat command: /whispertext NICK Aliases: /wt NICK /msgtext NICK
Diffstat (limited to 'src/input')
-rw-r--r--src/input/inputaction.h1
-rw-r--r--src/input/inputactionmap.h9
2 files changed, 10 insertions, 0 deletions
diff --git a/src/input/inputaction.h b/src/input/inputaction.h
index 28bb44fd8..0287e3f42 100644
--- a/src/input/inputaction.h
+++ b/src/input/inputaction.h
@@ -497,6 +497,7 @@ namespace InputAction
NUKE,
USE,
CHAT_ADD,
+ WHISPER_TEXT,
TOTAL
};
} // namespace InputAction
diff --git a/src/input/inputactionmap.h b/src/input/inputactionmap.h
index b25dfe848..08d7bbf7a 100644
--- a/src/input/inputactionmap.h
+++ b/src/input/inputactionmap.h
@@ -4216,6 +4216,15 @@ static const InputActionData inputActionData[InputAction::TOTAL] = {
InputCondition::INGAME,
"addchat|chatadd",
true},
+ {"keyWhisperText",
+ InputType::UNKNOWN, InputAction::NO_VALUE,
+ InputType::UNKNOWN, InputAction::NO_VALUE,
+ Input::GRP_DEFAULT,
+ &Actions::msgText,
+ InputAction::NO_VALUE, 50,
+ InputCondition::INGAME,
+ "wt|whispertext|msgtext",
+ true},
};
#endif // INPUT_INPUTACTIONMAP_H