Skip to content

Commit 62deec9

Browse files
committed
Update APItem.hx
1 parent 0bc0261 commit 62deec9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

source/archipelago/APItem.hx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ class ConditionHelper {
2626
return ConditionHelper.create(function(item:APItem):Bool { return true; }, ConditionType.Everywhere);
2727
}
2828
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);
29+
return ConditionHelper.create(function(item:APItem):Bool { return Std.is(FlxG.state, states.PlayState) && (states.PlayState.instance.startingSong || item.isException); }, ConditionType.PlayState);
3030
}
3131
public static inline function Freeplay():Condition {
3232
return ConditionHelper.create(function(item:APItem):Bool { return Std.is(FlxG.state, states.FreeplayState); }, ConditionType.Freeplay);

0 commit comments

Comments
 (0)