浏览代码

Trim cheats so 'vcmiartifacts ' will be recognized as single-word cheat

Ivan Savenko 1 年之前
父节点
当前提交
f14aec5876
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      server/processors/PlayerMessageProcessor.cpp

+ 1 - 1
server/processors/PlayerMessageProcessor.cpp

@@ -436,7 +436,7 @@ void PlayerMessageProcessor::cheatMaxMorale(PlayerColor player, const CGHeroInst
 bool PlayerMessageProcessor::handleCheatCode(const std::string & cheat, PlayerColor player, ObjectInstanceID currObj)
 {
 	std::vector<std::string> words;
-	boost::split(words, cheat, boost::is_any_of("\t\r\n "));
+	boost::split(words, boost::trim_copy(cheat), boost::is_any_of("\t\r\n "));
 
 	if (words.empty() || !gameHandler->getStartInfo()->extraOptionsInfo.cheatsAllowed)
 		return false;