blob: 50f5fd7404f151d5d87ec7833c9a9f9938461699 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
/*
Description: This module adjusts outgoing data, making it compatible with legacy clients
*/
// module main
exports.run = async (core, server, socket, data) => {
return;
};
// module hook functions
exports.initHooks = (server) => {
// module is only a placeholder
//server.registerHook('out', '', this.);
};
// module meta
exports.info = {
name: 'legacylayer',
description: 'This module adjusts outgoing data, making it compatible with legacy clients'
};
|