mirror of
https://github.com/revanced/revanced-patches
synced 2025-02-22 21:41:12 +01:00
10 lines
254 B
Java
10 lines
254 B
Java
|
package app.revanced.twitch.patches;
|
||
|
|
||
|
import app.revanced.twitch.settings.SettingsEnum;
|
||
|
|
||
|
public class AutoClaimChannelPointsPatch {
|
||
|
public static boolean shouldAutoClaim() {
|
||
|
return SettingsEnum.AUTO_CLAIM_CHANNEL_POINTS.getBoolean();
|
||
|
}
|
||
|
}
|