diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-05-01 01:27:31 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-05-01 01:27:31 +0300 |
commit | e49cbd2dfc23b1ad0b8f568a7b0e8bc054546230 (patch) | |
tree | 6830cb844006e5fe1b7d43d29fd5565d71088fb6 /src/input | |
parent | 0f25d9c48f75b270da3ec7c86b21f17877513f21 (diff) | |
download | plus-e49cbd2dfc23b1ad0b8f568a7b0e8bc054546230.tar.gz plus-e49cbd2dfc23b1ad0b8f568a7b0e8bc054546230.tar.bz2 plus-e49cbd2dfc23b1ad0b8f568a7b0e8bc054546230.tar.xz plus-e49cbd2dfc23b1ad0b8f568a7b0e8bc054546230.zip |
Add chat command to show server configuration variable in chat.
New chat command: /servconfget varname
Alias: /getservconf varname
Diffstat (limited to 'src/input')
-rw-r--r-- | src/input/inputaction.h | 1 | ||||
-rw-r--r-- | src/input/inputactionmap.h | 5 |
2 files changed, 6 insertions, 0 deletions
diff --git a/src/input/inputaction.h b/src/input/inputaction.h index ad34a254c..5faee657c 100644 --- a/src/input/inputaction.h +++ b/src/input/inputaction.h @@ -599,6 +599,7 @@ namespace InputAction CONF_SET, SERVER_CONF_SET, CONG_GET, + SERVER_CONG_GET, TOTAL }; } // namespace InputAction diff --git a/src/input/inputactionmap.h b/src/input/inputactionmap.h index 653c83973..71408667c 100644 --- a/src/input/inputactionmap.h +++ b/src/input/inputactionmap.h @@ -4484,6 +4484,11 @@ static const InputActionData inputActionData[InputAction::TOTAL] = { InputCondition::INGAME, "confget|getconf", true}, + {"keyServerConfGet", + defaultAction(&Actions::serverConfGet), + InputCondition::INGAME, + "servconfget|getservconf", + true}, }; #undef defaultAction |