I try to understand how to use the OR block correctly.
The documentation states: "You can also create OR blocks which run if any condition is true, rather than all the conditions. See How events work for more information." and "the event will run if "condition 1 OR condition 2 OR condition 3..." are true."
I have an event in which I register the tap on a sprite. I have two OR conditions which ask for the current game state ("show results" and "boss waiting"). I'd assume that the game only executes the following actions when the conditions are met.
BUT I have another event block which also registers the tap on the same sprite. It too has its own condition "game lost" which results in another action than the first event and should ONLY trigger when the condition "game lost" is met.
But as soon as I set the first event to OR, it does not care which game state is active, it executes the action even if the game state is "game lost".
Did I use it wrong? Is this a bug?