Skip to content

Commit

Permalink
Remove another unneccessary check.
Browse files Browse the repository at this point in the history
  • Loading branch information
The-Briel-Deal committed May 13, 2024
1 parent d1b9541 commit ba26b35
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/config/ConfigManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1984,7 +1984,7 @@ std::optional<std::string> CConfigManager::handleBind(const std::string& command
return "Invalid mod, requested mod \"" + MODSTR + "\" is not a valid mod.";
}

if ((KEY != "") || multiKey) {
if (KEY != "") {
SParsedKey parsedKey = parseKey(KEY);

if (parsedKey.catchAll && m_szCurrentSubmap == "") {
Expand Down

0 comments on commit ba26b35

Please sign in to comment.