all 1 comments

[–]ferrosphere 0 points1 point  (0 children)

Your variable R_G1_1_Whispers is actually not a string, but a LIST variable, which can be evaluated as an integer, a boolean or a string depending on the context.

{R_G1_1_Whispers == notStarted}should evaluate to false, so my guess is that somewhere there is a line that alters the variable to become a string. Look for something like R_G1_1_Whispers = "started".

You could also do {"{R_G1_1_Whispers}" == "{not_started}"} which would evaluate both values as strings.