From 76a3bf23b5e5591ae635e612af07cbbd78d49f53 Mon Sep 17 00:00:00 2001 From: redphx <96280+redphx@users.noreply.github.com> Date: Sat, 13 May 2023 20:34:00 +0700 Subject: [PATCH] feat(twitch/auto-claim-channel-points): use correct casing for "Channel Points" (#2138) --- .../chat/autoclaim/patch/AutoClaimChannelPointsPatch.kt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main/kotlin/app/revanced/patches/twitch/chat/autoclaim/patch/AutoClaimChannelPointsPatch.kt b/src/main/kotlin/app/revanced/patches/twitch/chat/autoclaim/patch/AutoClaimChannelPointsPatch.kt index 1c9e9a451e..1232240f2f 100644 --- a/src/main/kotlin/app/revanced/patches/twitch/chat/autoclaim/patch/AutoClaimChannelPointsPatch.kt +++ b/src/main/kotlin/app/revanced/patches/twitch/chat/autoclaim/patch/AutoClaimChannelPointsPatch.kt @@ -22,7 +22,7 @@ import app.revanced.patches.twitch.misc.settings.bytecode.patch.SettingsPatch @Patch @DependsOn([SettingsPatch::class]) @Name("auto-claim-channel-points") -@Description("Automatically claim channel points.") +@Description("Automatically claim Channel Points.") @AutoClaimChannelPointsCompatibility @Version("0.0.1") class AutoClaimChannelPointPatch : BytecodePatch( @@ -34,16 +34,16 @@ class AutoClaimChannelPointPatch : BytecodePatch( "revanced_auto_claim_channel_points", StringResource( "revanced_auto_claim_channel_points", - "Automatically claim channel points" + "Automatically claim Channel Points" ), true, StringResource( "revanced_auto_claim_channel_points_on", - "Channel points are claimed automatically" + "Channel Points are claimed automatically" ), StringResource( "revanced_auto_claim_channel_points_off", - "Channel points are not claimed automatically" + "Channel Points are not claimed automatically" ), ) )