diff options
author | Wyvest <wyvestbusiness@gmail.com> | 2023-03-22 11:12:13 -0400 |
---|---|---|
committer | Wyvest <wyvestbusiness@gmail.com> | 2023-03-22 11:12:13 -0400 |
commit | 5639d73f8dc645228cf2da41b1b0a68b4ebbc2db (patch) | |
tree | 3943d42634e506b133732b56f4cff220dfc1548f /docs | |
parent | a224dcb2a525306d195b8cbf3885392db5316ce2 (diff) | |
download | Chatting-5639d73f8dc645228cf2da41b1b0a68b4ebbc2db.tar.gz Chatting-5639d73f8dc645228cf2da41b1b0a68b4ebbc2db.tar.bz2 Chatting-5639d73f8dc645228cf2da41b1b0a68b4ebbc2db.zip |
fix party tab detection with party join messages
Co-Authored-By: XThe <101992755+SirXThe@users.noreply.github.com>
Diffstat (limited to 'docs')
-rw-r--r-- | docs/chattabs.md | 11 |
1 files changed, 9 insertions, 2 deletions
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. |