Files
P42_godDaemons/Observer/actions/arena/dispatch.js
T
2026-06-13 13:47:46 +00:00

6 lines
171 B
JavaScript

export function dispatchMessage(redisCnx, msg, chan) {
if(typeof(redisCnx.dispatchArenaMessage) !== 'function') return
redisCnx.dispatchArenaMessage(msg, chan)
}