Skip to content
This repository was archived by the owner on Aug 31, 2021. It is now read-only.

Commit 474f50d

Browse files
committed
[[ Bug 19824 ]] 'is scripted' step is never 'is not'
Pass false as the 'is not' parameter to the check that a property has a given value when the step is an 'is scripted' step - this is never an 'is not' situation.
1 parent ef1b9b4 commit 474f50d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Toolset/palettes/tutorial/revtutorial.livecodescript

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2089,7 +2089,7 @@ function revTutorialCheckWaitCondition pActionData
20892089
if revTutorialScriptIs(the script of tObject, sWait["current script"]) then
20902090
break
20912091
end if
2092-
if revTutorialObjectPropertyIsValue(tObject, "script", pActionData["script"]) then
2092+
if revTutorialObjectPropertyIsValue(tObject, "script", pActionData["script"], false) then
20932093
return true
20942094
else if sWait["current script"] is not empty then
20952095
add 1 to sWait["incorrect attempts"]

0 commit comments

Comments
 (0)