Adjust assertion to match new juice stream child ordering

This commit is contained in:
Bartłomiej Dach 2024-01-02 20:51:22 +01:00
parent 72e502e615
commit 88509f28ad
No known key found for this signature in database
1 changed files with 1 additions and 1 deletions

View File

@ -39,7 +39,7 @@ public void TestJuiceStream()
Mod = new CatchModHidden(),
PassCondition = () => Player.Results.Count > 0
&& Player.ChildrenOfType<DrawableJuiceStream>().Single().Alpha > 0
&& Player.ChildrenOfType<DrawableFruit>().Last().Alpha > 0
&& Player.ChildrenOfType<DrawableFruit>().First().Alpha > 0
});
}