We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bac8330 commit 92bbf0cCopy full SHA for 92bbf0c
cleo_plugins/DebugUtils/ScriptLog.cpp
@@ -1090,9 +1090,7 @@ CLEO::OpcodeResult ScriptLog::OnScriptOpcodeProcessAfter(CLEO::CRunningScript* s
1090
{
1091
if (!first) { line += ", "; first = false; }
1092
line += "condition: ";
1093
- if (script->NotFlag) line += "not(";
1094
- line += m_conditionResultValue ? "true" : "false";
1095
- if (script->NotFlag) line += ")";
+ line += (m_conditionResultValue ^ script->NotFlag) ? "true" : "false";
1096
}
1097
1098
0 commit comments