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 6369818 commit 7f8de14Copy full SHA for 7f8de14
source/archipelago/APInfo.hx
@@ -10,6 +10,18 @@ class APInfo {
10
public static var unlockMethod:String = "Song Completion";
11
public static var unlockType:String = "Per Song";
12
13
+ public static var hasNoteChecks(get, never):Bool;
14
+
15
+ public static var hasSongChecks(get, never):Bool;
16
17
+ public static function get_hasNoteChecks():Bool {
18
+ return unlockMethod == "Note Checks" || unlockMethod == "Both";
19
+ }
20
21
+ public static function get_hasSongChecks():Bool {
22
+ return unlockMethod == "Song Completion" || unlockMethod == "Both";
23
24
25
public static final baseGame:Array<String> =
26
[
27
'Tutorial',
0 commit comments