diff options
Diffstat (limited to 'src/main/kotlin/util/skyblock')
| -rw-r--r-- | src/main/kotlin/util/skyblock/ScreenIdentification.kt | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/main/kotlin/util/skyblock/ScreenIdentification.kt b/src/main/kotlin/util/skyblock/ScreenIdentification.kt index 7370a6f..ef64a30 100644 --- a/src/main/kotlin/util/skyblock/ScreenIdentification.kt +++ b/src/main/kotlin/util/skyblock/ScreenIdentification.kt @@ -19,3 +19,11 @@ fun Screen.isBazaarUi(): Boolean { it.unformattedString == "To Bazaar" }) } + +fun Screen.isSuperPairs(): Boolean { + return title.unformattedString.startsWith("Superpairs") +} + +fun Screen.isExperimentationRngMeter(): Boolean { + return this.title.unformattedString.contains("Experimentation Table RNG") +} |
