Add motd to hi message
This commit is contained in:
parent
ec16301ae3
commit
008d38f5ff
|
@ -34,4 +34,4 @@ tokenAuth: none
|
||||||
# "none" will disable the browser challenge,
|
# "none" will disable the browser challenge,
|
||||||
# "obf" will sent an obfuscated function to the client,
|
# "obf" will sent an obfuscated function to the client,
|
||||||
# and "basic" will just send a simple function that expects a boolean.
|
# and "basic" will just send a simple function that expects a boolean.
|
||||||
browserChallenge: basic
|
browserChallenge: none
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
import { Logger } from "../../../../util/Logger";
|
import { Logger } from "../../../../util/Logger";
|
||||||
|
import { getMOTD } from "../../../../util/motd";
|
||||||
import { generateToken, verifyToken } from "../../../../util/token";
|
import { generateToken, verifyToken } from "../../../../util/token";
|
||||||
import { ClientEvents, ServerEventListener } from "../../../../util/types";
|
import { ClientEvents, ServerEventListener } from "../../../../util/types";
|
||||||
import { config } from "../../../usersConfig";
|
import { config } from "../../../usersConfig";
|
||||||
|
@ -70,10 +71,11 @@ export const hi: ServerEventListener<"hi"> = {
|
||||||
color: part.color,
|
color: part.color,
|
||||||
name: part.name
|
name: part.name
|
||||||
},
|
},
|
||||||
token: generatedToken
|
token: generatedToken,
|
||||||
}
|
motd: getMOTD()
|
||||||
|
};
|
||||||
|
|
||||||
logger.debug("Hi message:", m);
|
//logger.debug("Hi message:", m);
|
||||||
|
|
||||||
socket.sendArray([m as ClientEvents["hi"]]);
|
socket.sendArray([m as ClientEvents["hi"]]);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue