fix(pterodactyl): detect messages sent through /say

This commit is contained in:
Seaswimmer 2024-03-02 15:18:32 -05:00
parent 385c94c97e
commit 1263f59cee
Signed by untrusted user: cswimr
GPG key ID: B8953EC01E5C4063
2 changed files with 3 additions and 3 deletions

View file

@ -11,7 +11,7 @@
### Chat
```re
\[\d{2}:\d{2}:\d{2}\sINFO\]: <(\w+)>\s(.*)
\[\d{2}:\d{2}:\d{2}\sINFO\]: (?:<|\[)(\w+)(?:>|\]) (.*)
```
### Join
@ -43,7 +43,7 @@
### Chat
```re
^\[\d{2}:\d{2}:\d{2}\] \[Server thread\/INFO\] \[minecraft\/MinecraftServer\]: <(\w+)>\s(.*)
^\[\d{2}:\d{2}:\d{2}\] \[Server thread\/INFO\] \[minecraft\/MinecraftServer\]: (?:<|\[)(\w+)(?:>|\]) (.*)
```
### Join

View file

@ -10,7 +10,7 @@ def register_config(config_obj: Config) -> None:
startup_jar=None,
startup_arguments=None,
current_status='',
chat_regex=r"\[\d{2}:\d{2}:\d{2}\sINFO\]: <(\w+)>\s(.*)",
chat_regex=r"\[\d{2}:\d{2}:\d{2}\sINFO\]: (?:<|\[)(\w+)(?:>|\]) (.*)",
server_regex=r"^\[\d{2}:\d{2}:\d{2} INFO\]:(?: \[Not Secure\])? \[(?:Server|Rcon)\] (.*)",
join_regex=r"^\[\d{2}:\d{2}:\d{2} INFO\]: ([^<\n]+) joined the game$",
leave_regex=r"^\[\d{2}:\d{2}:\d{2} INFO\]: ([^<\n]+) left the game$",