[WORKSHOP BUG] Validation Error

When a Wait action is disabled (and paired with a Loop action), and its parent rule is also disabled, the code is still validated as invalid, making it not possible to start the game.

disabled rule("Disabled rule shouldn't be validated")
{
    event
    {
        Ongoing - Global;
    }

    actions
    {
        disabled Wait(0.250, Ignore Condition);
        Loop If(False);
    }
}
1 Like

Not sure about this but try to make it abort when condition is false instead of ignore condition.

Bug not fixed - August 13 2019