blob: 12551bb1cef00b4305df5370e44b368ffa70828f (
plain)
1
2
3
4
5
6
7
8
9
10
|
/**
* i am mod now
* @param {Array} args packet arguments
*/
export const handleAUTH = (args: string[]) => {
if (args[1] === "1") {
(<HTMLAnchorElement>document.getElementById("mod_ui")).href =
`styles/mod.css`;
}
};
|