diff options
author | Sergeanur <s.anureev@yandex.ua> | 2020-01-31 16:31:24 +0100 |
---|---|---|
committer | Sergeanur <s.anureev@yandex.ua> | 2020-01-31 16:31:24 +0100 |
commit | 74e215458b0632c862eb90c2f514f54cf331df79 (patch) | |
tree | 72a2cd906c92ad8a7a141618d94d816e60797b36 /src/control/Script.cpp | |
parent | Fixed wrong slot indexing in Frontend (diff) | |
download | re3-74e215458b0632c862eb90c2f514f54cf331df79.tar re3-74e215458b0632c862eb90c2f514f54cf331df79.tar.gz re3-74e215458b0632c862eb90c2f514f54cf331df79.tar.bz2 re3-74e215458b0632c862eb90c2f514f54cf331df79.tar.lz re3-74e215458b0632c862eb90c2f514f54cf331df79.tar.xz re3-74e215458b0632c862eb90c2f514f54cf331df79.tar.zst re3-74e215458b0632c862eb90c2f514f54cf331df79.zip |
Diffstat (limited to 'src/control/Script.cpp')
-rw-r--r-- | src/control/Script.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/control/Script.cpp b/src/control/Script.cpp index 2b3fdbc0..8a6094ee 100644 --- a/src/control/Script.cpp +++ b/src/control/Script.cpp @@ -6734,7 +6734,7 @@ int8 CRunningScript::ProcessCommandsFrom800To899(int32 command) } int16 total; CWorld::FindObjectsIntersectingCube(CVector(infX, infY, infZ), CVector(supX, supY, supZ), &total, 2, nil, - ScriptParams[7], ScriptParams[8], ScriptParams[9], ScriptParams[10], ScriptParams[11]); + !!ScriptParams[6], !!ScriptParams[7], !!ScriptParams[8], !!ScriptParams[9], !!ScriptParams[10]); UpdateCompareFlag(total > 0); return 0; } |