blob: b4f00a8f85936bc398fc4c87c13ef4fedc328407 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
import { client } from "../../client";
const version = process.env.npm_package_version;
/**
* Handle the player
* @param {Array} args packet arguments
*/
export const handleHI = (_args: string[]) => {
client.sender.sendSelf(`ID#1#webAO#${version}#%`);
client.sender.sendSelf(
"FL#fastloading#yellowtext#cccc_ic_support#flipping#looping_sfx#effects#%"
);
}
|