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);
}
}