We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0bc0261 commit 62deec9Copy full SHA for 62deec9
source/archipelago/APItem.hx
@@ -26,7 +26,7 @@ class ConditionHelper {
26
return ConditionHelper.create(function(item:APItem):Bool { return true; }, ConditionType.Everywhere);
27
}
28
public static inline function PlayState():Condition {
29
- return ConditionHelper.create(function(item:APItem):Bool { return Std.is(FlxG.state, states.PlayState) && (!states.PlayState.instance.startingSong || item.isException); }, ConditionType.PlayState);
+ return ConditionHelper.create(function(item:APItem):Bool { return Std.is(FlxG.state, states.PlayState) && (states.PlayState.instance.startingSong || item.isException); }, ConditionType.PlayState);
30
31
public static inline function Freeplay():Condition {
32
return ConditionHelper.create(function(item:APItem):Bool { return Std.is(FlxG.state, states.FreeplayState); }, ConditionType.Freeplay);
0 commit comments