feat(pterodactyl): added startup and shutdown messages
Some checks failed
Actions / Lint Code (Ruff & Pylint) (pull_request) Failing after 18s
Actions / Build Documentation (MkDocs) (pull_request) Successful in 21s

This commit is contained in:
SeaswimmerTheFsh 2024-03-01 00:05:06 -05:00
parent d39f0ba104
commit 7a39c9a75d
Signed by: cswimr
GPG key ID: B8953EC01E5C4063
2 changed files with 25 additions and 1 deletions

View file

@ -15,5 +15,7 @@ def register_config(config_obj: Config) -> None:
server_regex=r"^\[\d{2}:\d{2}:\d{2} INFO\]: \[Not Secure\] \[.*\] (.*)",
chat_command='tellraw @a ["",{"text":".$U ","color":".$C"},{"text":" (DISCORD): ","color":"blue"},{"text":".$M","color":"white"}]',
api_endpoint="minecraft",
chat_channel=None
chat_channel=None,
startup_msg='Server started!',
shutdown_msg='Server stopped!',
)