summaryrefslogtreecommitdiff
path: root/src/input
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2014-08-27 15:40:34 +0300
committerAndrei Karas <akaras@inbox.ru>2014-08-27 15:40:34 +0300
commit0b9105af0ae2b85a0a3ea5364d8a854d107ce34a (patch)
tree10d4c2e846010e55fe7a48cc9e84502938ef16ab /src/input
parentba4e639a333eed40f95f7bf7a361c0bd0186c334 (diff)
downloadplus-0b9105af0ae2b85a0a3ea5364d8a854d107ce34a.tar.gz
plus-0b9105af0ae2b85a0a3ea5364d8a854d107ce34a.tar.bz2
plus-0b9105af0ae2b85a0a3ea5364d8a854d107ce34a.tar.xz
plus-0b9105af0ae2b85a0a3ea5364d8a854d107ce34a.zip
Move chat command /disableaway into actions.
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 36f9277b1..cfeef44c1 100644
--- a/src/input/inputaction.h
+++ b/src/input/inputaction.h
@@ -412,6 +412,7 @@ namespace InputAction
DISABLE_HIGHLIGHT,
DONT_REMOVE_NAME,
REMOVE_NAME,
+ DISABLE_AWAY,
TOTAL
};
} // namespace InputAction
diff --git a/src/input/inputactionmap.h b/src/input/inputactionmap.h
index 244400d1b..d2d09c770 100644
--- a/src/input/inputactionmap.h
+++ b/src/input/inputactionmap.h
@@ -3485,6 +3485,15 @@ static const InputActionData inputActionData[InputAction::TOTAL] = {
InputAction::NO_VALUE, 50,
InputCondition::INGAME,
"removename",
+ false},
+ {"keyDisableAway",
+ InputType::UNKNOWN, InputAction::NO_VALUE,
+ InputType::UNKNOWN, InputAction::NO_VALUE,
+ Input::GRP_DEFAULT,
+ &Actions::disableAway,
+ InputAction::NO_VALUE, 50,
+ InputCondition::INGAME,
+ "disableaway",
false}
};