From 5da8e2e9480dfc62896dd41d00a9acafb2d01c6b Mon Sep 17 00:00:00 2001 From: Arno <12985596+qs-arno@users.noreply.github.com> Date: Sat, 9 Sep 2023 18:10:27 -0500 Subject: [PATCH] Emote matching type doc clarification Update the "emote matching type" documentation to more clearly describe the behaviour of the third choice. --- src/sites/twitch-twilight/modules/chat/input.jsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/sites/twitch-twilight/modules/chat/input.jsx b/src/sites/twitch-twilight/modules/chat/input.jsx index 6b1cade8..377de3a9 100644 --- a/src/sites/twitch-twilight/modules/chat/input.jsx +++ b/src/sites/twitch-twilight/modules/chat/input.jsx @@ -164,14 +164,14 @@ export default class Input extends Module { title: 'Emote Matching Type', description: '1: `ppa` would match `Kappa`\n\n' + '2: `sip` would match `cohhSip` but not `Gossip`\n\n' + - '3: `pasta` would match `pastaThat` but not `HoldThat`', + '3: `hol` would match `HolidayTree` but not `WholeWheat`', component: 'setting-select-box', data: [ {value: 1, title: '1: Anything (Twitch style)'}, {value: 2, title: '2: Non-Prefix (Old FFZ style)'}, - {value: 3, title: '3: Exact (Case-Insensitive)'} + {value: 3, title: '3: Prefix-Only (Case-Insensitive)'} ] } });