mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2025-12-19 14:51:27 +00:00
11 lines
300 B
Plaintext
11 lines
300 B
Plaintext
/datum/redis_callback/server_messages
|
|
channel = SERVER_MESSAGES_REDIS_CHANNEL
|
|
|
|
/datum/redis_callback/server_messages/on_message(message)
|
|
#ifdef MULTIINSTANCE
|
|
// Decode
|
|
var/list/data = json_decode(message)
|
|
// And fire
|
|
SSinstancing.execute_command(data["src"], data["cmd"], data["args"])
|
|
#endif
|