feat(src/mcdr.entry): add a new working message when server startup

This commit is contained in:
2025-06-23 14:44:33 +08:00
parent c6efbab1ee
commit 8dc99eb80a

View File

@@ -5,5 +5,9 @@ def on_load(server: PluginServerInterface, _prev_module):
server.logger.info("Loading MatrixPyBridge in MCDR...") server.logger.info("Loading MatrixPyBridge in MCDR...")
def on_server_startup(server: PluginServerInterface):
server.logger.info("Game message listener will start!")
def on_unload(server: PluginServerInterface): def on_unload(server: PluginServerInterface):
server.logger.info("Unloading MatrixPyBridge in MCDR...") server.logger.info("Unloading MatrixPyBridge in MCDR...")