feat(twitch/auto-claim-channel-points): use correct casing for "Channel Points" (#2138)
This commit is contained in:
parent
ba52570ad6
commit
63460542d0
1 changed files with 4 additions and 4 deletions
|
|
@ -22,7 +22,7 @@ import app.revanced.patches.twitch.misc.settings.bytecode.patch.SettingsPatch
|
||||||
@Patch
|
@Patch
|
||||||
@DependsOn([SettingsPatch::class])
|
@DependsOn([SettingsPatch::class])
|
||||||
@Name("auto-claim-channel-points")
|
@Name("auto-claim-channel-points")
|
||||||
@Description("Automatically claim channel points.")
|
@Description("Automatically claim Channel Points.")
|
||||||
@AutoClaimChannelPointsCompatibility
|
@AutoClaimChannelPointsCompatibility
|
||||||
@Version("0.0.1")
|
@Version("0.0.1")
|
||||||
class AutoClaimChannelPointPatch : BytecodePatch(
|
class AutoClaimChannelPointPatch : BytecodePatch(
|
||||||
|
|
@ -34,16 +34,16 @@ class AutoClaimChannelPointPatch : BytecodePatch(
|
||||||
"revanced_auto_claim_channel_points",
|
"revanced_auto_claim_channel_points",
|
||||||
StringResource(
|
StringResource(
|
||||||
"revanced_auto_claim_channel_points",
|
"revanced_auto_claim_channel_points",
|
||||||
"Automatically claim channel points"
|
"Automatically claim Channel Points"
|
||||||
),
|
),
|
||||||
true,
|
true,
|
||||||
StringResource(
|
StringResource(
|
||||||
"revanced_auto_claim_channel_points_on",
|
"revanced_auto_claim_channel_points_on",
|
||||||
"Channel points are claimed automatically"
|
"Channel Points are claimed automatically"
|
||||||
),
|
),
|
||||||
StringResource(
|
StringResource(
|
||||||
"revanced_auto_claim_channel_points_off",
|
"revanced_auto_claim_channel_points_off",
|
||||||
"Channel points are not claimed automatically"
|
"Channel Points are not claimed automatically"
|
||||||
),
|
),
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue