From 5639d73f8dc645228cf2da41b1b0a68b4ebbc2db Mon Sep 17 00:00:00 2001 From: Wyvest Date: Wed, 22 Mar 2023 11:12:13 -0400 Subject: fix party tab detection with party join messages Co-Authored-By: XThe <101992755+SirXThe@users.noreply.github.com> --- docs/chattabs.md | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) (limited to 'docs') diff --git a/docs/chattabs.md b/docs/chattabs.md index cb264e5..ca2740d 100644 --- a/docs/chattabs.md +++ b/docs/chattabs.md @@ -28,8 +28,10 @@ something like this: "§eThe party was transferred to §r", "§eKicked §r" ], + "contains": [ + "§r§ehas invited you to join their party!" + ], "ends": [ - "§r§ehas invited you to join their party!", "§r§eto the party! They have §r§c60 §r§eseconds to accept.§r", "§r§ehas disbanded the party!§r", "§r§ehas disconnected, they have §r§c5 §r§eminutes to rejoin before they are removed from the party.§r", @@ -143,8 +145,11 @@ that you may want to use. "§eThe party was transferred to §r", "§eKicked §r" ], + "contains": [ + "§r§ehas invited you to join their party!" + ], "ends": [ - "§r§ehas invited you to join their party!", + "§r§eto the party! They have §r§c60 §r§eseconds to accept.§r", ... "§r§e because they were offline.§r" ], @@ -204,6 +209,8 @@ The `starts` property allows you to only allow a message if it starts with a str example, if a message which contents were "Hello!", it would not be allowed, as it does not start anything in the `starts` property. +The `contains` property allows you to only allow a message if it contains a string in the `contains` property. + The `ends` property does a similar function, except only allowing a message if it **ends** with anything in the `ends` property rather than if it starts with anything. -- cgit