summaryrefslogtreecommitdiff
path: root/src/input/inputmanager.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/input/inputmanager.cpp')
-rw-r--r--src/input/inputmanager.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/input/inputmanager.cpp b/src/input/inputmanager.cpp
index 742181eef..2cbd100e2 100644
--- a/src/input/inputmanager.cpp
+++ b/src/input/inputmanager.cpp
@@ -72,7 +72,8 @@ InputManager::InputManager() :
mSetupInput(nullptr),
mNewKeyIndex(InputAction::NO_VALUE),
mMask(1),
- mNameMap()
+ mNameMap(),
+ mChatMap()
{
}
@@ -156,6 +157,8 @@ void InputManager::retrieve()
}
}
}
+ if (!inputActionData[i].chatCommand.empty())
+ mChatMap[i] = i;
}
}