10 lines
223 B
JavaScript
10 lines
223 B
JavaScript
|
|
export const eventHandlers = {
|
|
'arena:gods:ready': {
|
|
readyToStart(msg, chan, sender, cnxId) {
|
|
if(!this.maestroSrv) return
|
|
this.maestroSrv.handlePrepareAck(msg, chan)
|
|
},
|
|
},
|
|
}
|